update for HEAD-2003091401
[reactos.git] / lib / crtdll / float / nafter.c
1 #include <msvcrt/float.h>
2
3
4 /*
5  * @implemented
6  */
7 double _nextafter(double x, double y)
8 {
9         if (x == y)
10                 return x;
11
12         if (isnan(x) || isnan(y))
13                 return x;
14
15         return x;
16 }