summaryrefslogtreecommitdiffstats
path: root/newlib/libm/machine/spu/s_ceil.c
blob: c96d976fb66d8375dd53aa5d8758fc62e810a480 (plain)
1
2
3
4
5
6
7
#include <math.h>
#include "headers/ceil.h"

double ceil(double x)
{
    return _ceil(x);
}