summaryrefslogtreecommitdiff
path: root/include/math.h
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-03-02 11:38:39 -0500
committerRich Felker <dalias@aerifal.cx>2012-03-02 11:38:39 -0500
commit9fcecd7b34c66e9d0a2b000809e022a4f3e5e951 (patch)
treea3104e5e7837073d551671c0f8c22978a07a5034 /include/math.h
parentdb3e78cee5640edd3af95682b5ed554814e0d342 (diff)
downloadmusl-9fcecd7b34c66e9d0a2b000809e022a4f3e5e951.tar.gz
typo in math.h c version check
Diffstat (limited to 'include/math.h')
-rw-r--r--include/math.h2
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)