X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fmath%2Fround.c;h=b2abcd1f805c588735c8f873ede453db5b7b712c;hb=b2b5e5de72c2979464ac211460210ccf77a25d51;hp=e3815e1ff091ec24c34f4381d8bab8cc32a05012;hpb=d7cc1957de74235bd2a84c1ef26ecab2368f57e4;p=pdclib.old diff --git a/functions/math/round.c b/functions/math/round.c index e3815e1..b2abcd1 100644 --- a/functions/math/round.c +++ b/functions/math/round.c @@ -5,19 +5,6 @@ // This code is Public Domain. Use, modify, and redistribute at will. // ---------------------------------------------------------------------------- -// ---------------------------------------------------------------------------- -// C++ - -long long llround( float x ) { /* TODO */ }; -long long llround( long double x ) { /* TODO */ }; -long lround( float x ) { /* TODO */ }; -long lround( long double x ) { /* TODO */ }; -float round( float x ) { /* TODO */ }; -long double round( long double x ) { /* TODO */ }; - -// ---------------------------------------------------------------------------- -// Standard C - long long llround( double x ) { /* TODO */ }; long long llroundf( float x ) { /* TODO */ }; long long llroundl( long double x ) { /* TODO */ };