From efec5e7304ebefe60a7d24154681a6fedf9a8f2e Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Sat, 15 Aug 2020 14:31:03 -0400 Subject: correct version check directive --- complex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/complex.c b/complex.c index 09ea4f1..a760a72 100644 --- a/complex.c +++ b/complex.c @@ -1,6 +1,6 @@ #if defined __STDC_VERSION__ && \ (__STDC_VERSION__ == 199901L || \ - (20112L <= __STDC_VERSION__ && ! defined __STDC_NO_COMPLEX__)) + (201112L <= __STDC_VERSION__ && ! defined __STDC_NO_COMPLEX__)) #include #include "test.h" -- cgit v1.2.1