]> pd.if.org Git - pdclib/blobdiff - functions/math/round.c
Removed old files.
[pdclib] / functions / math / round.c
diff --git a/functions/math/round.c b/functions/math/round.c
deleted file mode 100644 (file)
index d5a052b..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-/* ----------------------------------------------------------------------------
- * $Id$
- * ----------------------------------------------------------------------------
- * Public Domain C Library - http://pdclib.sourceforge.net
- * This code is Public Domain. Use, modify, and redistribute at will.
- * --------------------------------------------------------------------------*/
-
-long long llround( double x ) { /* TODO */ };
-long long llroundf( float x ) { /* TODO */ };
-long long llroundl( long double x ) { /* TODO */ };
-long lround( double x ) { /* TODO */ };
-long lroundf( float x ) { /* TODO */ };
-long lroundl( long double x ) { /* TODO */ };
-double round( double x ) { /* TODO */ };
-
-/* Therx code
-{
-    return (int) ( x + 0.5 );
-}
-*/
-
-float roundf( float x ) { /* TODO */ };
-long double roundl( long double x ) { /* TODO */ };