diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-09-05 21:28:31 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-09-05 21:28:31 +0200 |
commit | daaee1de182b94fa262068cd9acddec810396452 (patch) | |
tree | fa831cef4a0cc7a81b3081d4e46eb620629fdc21 /include | |
parent | 8192a60a71150b4ee9cc0b2300fb13a6449af24c (diff) |
math.h: fix trivial typo (missing !): !defined __NO_LONG_DOUBLE_MATH
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include')
-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 a7c69b084..ecd01877c 100644 --- a/include/math.h +++ b/include/math.h @@ -135,7 +135,7 @@ __BEGIN_DECLS # if (defined __STDC__ || defined __GNUC__) \ - && (defined __NO_LONG_DOUBLE_MATH || defined __LDBL_COMPAT) + && (!defined __NO_LONG_DOUBLE_MATH || defined __LDBL_COMPAT) # ifdef __LDBL_COMPAT # ifdef __USE_ISOC99 |