summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2020-08-15 14:31:12 -0400
committerJakob Kaivo <jkk@ung.org>2020-08-15 14:31:12 -0400
commitd9118d87b77e5c0e2bfe1a196e841a31bff80ae3 (patch)
treeda74eb9a876da3aaf14af52bfbdc4ce7d31648d6
parentefec5e7304ebefe60a7d24154681a6fedf9a8f2e (diff)
correct version check directive
-rw-r--r--math.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/math.c b/math.c
index 8db3d1e..b170c4d 100644
--- a/math.c
+++ b/math.c
@@ -40,7 +40,7 @@ void test_math_h(void)
test_double(floor(0.9), 0);
test_double(fmod(1, 1), 0);
- #if defined __STDC_VERSION__ && 19901 <= __STDC_VERSION__
+ #if defined __STDC_VERSION__ && 199901 <= __STDC_VERSION__
test_int_equals(signbit(ldm1), 1);
test_int_equals(signbit(dm1), 1);
test_int_equals(signbit(fm1), 1);