]> pd.if.org Git - pdclib/blobdiff - functions/math/sqrt.c
Removed old files.
[pdclib] / functions / math / sqrt.c
diff --git a/functions/math/sqrt.c b/functions/math/sqrt.c
deleted file mode 100644 (file)
index 802f4ce..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-/* ----------------------------------------------------------------------------
- * $Id$
- * ----------------------------------------------------------------------------
- * Public Domain C Library - http://pdclib.sourceforge.net
- * This code is Public Domain. Use, modify, and redistribute at will.
- * --------------------------------------------------------------------------*/
-
-double sqrt( double x ) { /* TODO */ };
-
-/* Therx code
-{
-    double i = x / 2;
-    if ( x < 0 )
-    {
-        return 0;
-    }
-    // (15 DP) HOW GET MORE?
-    while ( ( fabs( i - ( x / i ) ) / i ) > 0.000000000000001)
-    {
-        i = ( i + ( x / i ) ) / 2;
-    }
-    return i;
-}
-*/
-
-float sqrtf( float x ) { /* TODO */ };
-long double sqrtl( long double x ) { /* TODO */ };