From 9fcecd7b34c66e9d0a2b000809e022a4f3e5e951 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Fri, 2 Mar 2012 11:38:39 -0500 Subject: [PATCH] typo in math.h c version check --- include/math.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/math.h b/include/math.h index 4af75ed7..4c46a055 100644 --- a/include/math.h +++ b/include/math.h @@ -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) -- 2.20.1