libc/newlib/libm/machine/spu/s_ceil.c

8 lines
92 B
C

#include <math.h>
#include "headers/ceil.h"
double ceil(double x)
{
return _ceil(x);
}