ReactOS 0.4.15-dev-7842-g558ab78
nafter.c
Go to the documentation of this file.
1/*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS system libraries
4 * FILE: lib/sdk/crt/float/nafter.c
5 * PURPOSE: Unknown
6 * PROGRAMER: Unknown
7 * UPDATE HISTORY:
8 * 25/11/05: Added license header
9 */
10
11#include <precomp.h>
12
13/*
14 * @implemented
15 */
16double _nextafter( double x, double y )
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)
double _nextafter(double x, double y)
Definition: nafter.c:16