]> pd.if.org Git - pdclib/blob - functions/math/nearbyint.c
3937dbebb37d6890606e0f5129a08bd0f106290c
[pdclib] / functions / math / nearbyint.c
1 /* ----------------------------------------------------------------------------
2  * $Id$
3  * ----------------------------------------------------------------------------
4  * Public Domain C Library - http://pdclib.sourceforge.net
5  * This code is Public Domain. Use, modify, and redistribute at will.
6  * --------------------------------------------------------------------------*/
7
8 double nearbyint( double x ) { /* TODO */ };
9
10 /* Therx code
11 {
12     return round( x );
13 }
14 */
15
16 float nearbyintf( float x ) { /* TODO */ };
17 long double nearbyintl( long double x ) { /* TODO */ };