8 lines
92 B
C
8 lines
92 B
C
|
#include <math.h>
|
||
|
#include "headers/ceil.h"
|
||
|
|
||
|
double ceil(double x)
|
||
|
{
|
||
|
return _ceil(x);
|
||
|
}
|