]> pd.if.org Git - pdclib/blobdiff - functions/math/fdim.c
Removed old files.
[pdclib] / functions / math / fdim.c
diff --git a/functions/math/fdim.c b/functions/math/fdim.c
deleted file mode 100644 (file)
index 5956e5f..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-/* ----------------------------------------------------------------------------
- * $Id$
- * ----------------------------------------------------------------------------
- * Public Domain C Library - http://pdclib.sourceforge.net
- * This code is Public Domain. Use, modify, and redistribute at will.
- * --------------------------------------------------------------------------*/
-
-double fdim( double x, double y ) { /* TODO */ };
-
-/* Therx code
-{
-    return ( ( x - y ) < 1 ) ? 0 : x - y;
-}
-*/
-
-float fdimf( float x, float y ) { /* TODO */ };
-long double fdiml( long double x, long double y ) { /* TODO */ };