ReactOS 0.4.15-dev-7942-gd23573b
nafter.c File Reference
#include <precomp.h>
Include dependency graph for nafter.c:

Go to the source code of this file.

Functions

double _nextafter (double x, double y)
 

Function Documentation

◆ _nextafter()

double _nextafter ( double  x,
double  y 
)

Definition at line 16 of file nafter.c.

17{
18 WARN("This function is not implemented correctly\n");
19 if ( x == y)
20 return x;
21
22 if ( _isnan(x) || _isnan(y) )
23 return x;
24
25 return x;
26}
#define WARN(fmt,...)
Definition: debug.h:112
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
GLint GLint GLint GLint GLint GLint y
Definition: gl.h:1548
_Check_return_ __MINGW_NOTHROW _CRTIMP int __cdecl _isnan(_In_ double)