]> pd.if.org Git - pdclib/blobdiff - functions/math/floor.c
Removed old files.
[pdclib] / functions / math / floor.c
diff --git a/functions/math/floor.c b/functions/math/floor.c
deleted file mode 100644 (file)
index 7d62107..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-/* ----------------------------------------------------------------------------
- * $Id$
- * ----------------------------------------------------------------------------
- * Public Domain C Library - http://pdclib.sourceforge.net
- * This code is Public Domain. Use, modify, and redistribute at will.
- * --------------------------------------------------------------------------*/
-
-double floor( double x ) { /* TODO */ };
-
-/* Therx code
-{
-    return ( x > 0 ) ? (int) x : (int) ( x - 0.9999999999999999 );
-}
-*/
-
-/* PDPC code - unreviewed
-{
-    int y;
-    
-    if (x < 0.0)
-    {
-        y = (int)fabs(x);
-        if ((double)y != x)
-        {
-            y--;
-        }
-    }
-    else
-    {
-        y = (int)x;
-    }
-    return ((double)x);
-}
-*/
-
-float floorf( float x ) { /* TODO */ };
-long double floorl( long double x ) { /* TODO */ };