X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fmath%2Fround.c;fp=functions%2Fmath%2Fround.c;h=0000000000000000000000000000000000000000;hb=94cec7268060142c361c882c0a54d4b0052a591c;hp=d5a052b7ed3c44fc27d42f24b6b4d274956110c3;hpb=c8f799d852e3698468a78954d82588e841cc0b70;p=pdclib.old diff --git a/functions/math/round.c b/functions/math/round.c deleted file mode 100644 index d5a052b..0000000 --- a/functions/math/round.c +++ /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 */ };