:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / lib / msvcrt / float / nafter.c
1 #include <msvcrt/float.h>
2
3 double _nextafter( double x, double y )
4 {
5         if ( x == y)
6                 return x;
7
8         if ( isnan(x) || isnan(y) )
9                 return x;
10
11         return x;
12 }