diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-03-02 11:38:39 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-03-02 11:38:39 -0500 |
commit | 9fcecd7b34c66e9d0a2b000809e022a4f3e5e951 (patch) | |
tree | a3104e5e7837073d551671c0f8c22978a07a5034 | |
parent | db3e78cee5640edd3af95682b5ed554814e0d342 (diff) | |
download | musl-9fcecd7b34c66e9d0a2b000809e022a4f3e5e951.tar.gz musl-9fcecd7b34c66e9d0a2b000809e022a4f3e5e951.tar.xz musl-9fcecd7b34c66e9d0a2b000809e022a4f3e5e951.zip |
typo in math.h c version check
-rw-r--r-- | include/math.h | 2 |
1 files changed, 1 insertions, 1 deletions
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) |