update for HEAD-2003021201
[reactos.git] / lib / crtdll / float / nafter.c
index 5e2a2ad..9237716 100644 (file)
@@ -1,11 +1,12 @@
-#include <crtdll/float.h>
+#include <msvcrt/float.h>
 
-double _nextafter( double x, double y )
+
+double _nextafter(double x, double y)
 {
-       if ( x == y)
+       if (x == y)
                return x;
 
-       if ( isnan(x) || isnan(y) )
+       if (isnan(x) || isnan(y))
                return x;
 
        return x;