ReactOS
0.4.16-dev-734-g364d6e0
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
*/
16
double
_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
}
WARN
#define WARN(fmt,...)
Definition:
precomp.h:61
x
GLint GLint GLint GLint GLint x
Definition:
gl.h:1548
y
GLint GLint GLint GLint GLint GLint y
Definition:
gl.h:1548
_isnan
_Check_return_ __MINGW_NOTHROW _CRTIMP int __cdecl _isnan(_In_ double)
_nextafter
double _nextafter(double x, double y)
Definition:
nafter.c:16
sdk
lib
crt
float
nafter.c
Generated on Sun Feb 9 2025 06:13:57 for ReactOS by
1.9.6