summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2020-08-15 14:31:03 -0400
committerJakob Kaivo <jkk@ung.org>2020-08-15 14:31:03 -0400
commitefec5e7304ebefe60a7d24154681a6fedf9a8f2e (patch)
treec03fdd9f109c688a9369603792dd011834150491
parentc7eee50c124c8b8d7be4af4bd01efed99400fb97 (diff)
correct version check directive
-rw-r--r--complex.c2
1 files changed, 1 insertions, 1 deletions
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 <complex.h>
#include "test.h"