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