]> pd.if.org Git - pdclib/blobdiff - functions/math/ceil.c
Removed old files.
[pdclib] / functions / math / ceil.c
diff --git a/functions/math/ceil.c b/functions/math/ceil.c
deleted file mode 100644 (file)
index 4c1e7bd..0000000
+++ /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 */ };