8 lines
92 B
C
Raw Normal View History

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