From: Rich Felker Date: Fri, 2 Mar 2012 16:38:39 +0000 (-0500) Subject: typo in math.h c version check X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=9fcecd7b34c66e9d0a2b000809e022a4f3e5e951 typo in math.h c version check --- 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)