Welcome to mirror list, hosted at ThFree Co, Russian Federation.

s_ceil.c « spu « machine « libm « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c96d976fb66d8375dd53aa5d8758fc62e810a480 (plain)
1
2
3
4
5
6
7
#include <math.h>
#include "headers/ceil.h"

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