X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fmath%2Fceil.c;fp=functions%2Fmath%2Fceil.c;h=0000000000000000000000000000000000000000;hb=a1f747e81dad0bb9897cb11c652403bb7bbf084c;hp=4c1e7bd276acc6c192886672650a314325ffbef5;hpb=1d9d92ba957a0b8307c9a65c35867fde68e6533b;p=pdclib diff --git a/functions/math/ceil.c b/functions/math/ceil.c deleted file mode 100644 index 4c1e7bd..0000000 --- a/functions/math/ceil.c +++ /dev/null @@ -1,30 +0,0 @@ -/* ---------------------------------------------------------------------------- - * $Id$ - * ---------------------------------------------------------------------------- - * Public Domain C Library - http://pdclib.sourceforge.net - * This code is Public Domain. Use, modify, and redistribute at will. - * --------------------------------------------------------------------------*/ - -double ceil( double x ) { /* TODO */ }; - -/* Therx code -{ - return ( x < 0 ) ? (int) x : ( (int) x ) + 1; -} -*/ - -/* PDPC code - unreviewed -{ - int y; - - y = (int)x; - if ((double)y < x) - { - y++; - } - return ((double)y); -} -*/ - -float ceilf( float x ) { /* TODO */ }; -long double ceill( long double x ) { /* TODO */ };