os/libc/math.h

8 lines
88 B
C

#ifndef MATH_H
#define MATH_H
float ceilf(float num);
double ceil(double num);
#endif