]> pd.if.org Git - pdclib/blob - functions/math/nextafter.c
204caadc6105ef24ae9fb86d494a400a4a13c8f0
[pdclib] / functions / math / nextafter.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 nextafter( double x, double y ) { /* TODO */ };
9 float nextafterf( float x, float y ) { /* TODO */ };
10 long double nextafterl( long double x, long double y ) { /* TODO */ };