typo in math.h c version check
authorRich Felker <dalias@aerifal.cx>
Fri, 2 Mar 2012 16:38:39 +0000 (11:38 -0500)
committerRich Felker <dalias@aerifal.cx>
Fri, 2 Mar 2012 16:38:39 +0000 (11:38 -0500)
include/math.h

index 4af75ed..4c46a05 100644 (file)
@@ -53,7 +53,7 @@ int __fpclassifyl(long double);
 #define isunordered(x,y) (isnan((x)) ? ((y),1) : isnan((y)))
 
 static
-#if __STDC_VERSION >= 199901L
+#if __STDC_VERSION__ >= 199901L
 inline
 #endif
 int __isrel(long double __x, long double __y, int __rel)