From d9118d87b77e5c0e2bfe1a196e841a31bff80ae3 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Sat, 15 Aug 2020 14:31:12 -0400 Subject: correct version check directive --- math.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit v1.2.1