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