os/libc/math.h

8 lines
88 B
C
Raw Normal View History

2019-02-09 12:52:45 -06:00
#ifndef MATH_H
#define MATH_H
float ceilf(float num);
2019-04-06 09:07:06 -05:00
double ceil(double num);
2019-02-09 12:52:45 -06:00
#endif