xref: /reactos/sdk/lib/crt/float/nafter.c (revision 69931a4a)
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 }
27