2007-03-14 20:24:57 +00:00
|
|
|
/*
|
|
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
|
|
* PROJECT: ReactOS system libraries
|
2015-09-19 13:50:57 +00:00
|
|
|
* FILE: lib/sdk/crt/float/nafter.c
|
2007-03-14 20:24:57 +00:00
|
|
|
* PURPOSE: Unknown
|
|
|
|
* PROGRAMER: Unknown
|
|
|
|
* UPDATE HISTORY:
|
|
|
|
* 25/11/05: Added license header
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <precomp.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* @implemented
|
|
|
|
*/
|
|
|
|
double _nextafter( double x, double y )
|
|
|
|
{
|
2008-06-06 17:49:24 +00:00
|
|
|
WARN("This function is not implemented correctly\n");
|
2007-03-14 20:24:57 +00:00
|
|
|
if ( x == y)
|
|
|
|
return x;
|
|
|
|
|
|
|
|
if ( _isnan(x) || _isnan(y) )
|
|
|
|
return x;
|
|
|
|
|
|
|
|
return x;
|
|
|
|
}
|