summaryrefslogtreecommitdiff
path: root/src/stdio/__printf.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2024-01-31 00:00:51 -0500
committerJakob Kaivo <jkk@ung.org>2024-01-31 00:00:51 -0500
commit36bd6c283383851664bbe598601c99385e5dcd43 (patch)
tree841682120f19b993eb6de1e6a0c30dda6a11aabf /src/stdio/__printf.c
parentf10737a4ee4a818acdc28fa2e32c85a74f47eb5c (diff)
make tweaks to work with 1:1 checked functions
Diffstat (limited to 'src/stdio/__printf.c')
-rw-r--r--src/stdio/__printf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdio/__printf.c b/src/stdio/__printf.c
index 391f7cbc..e1460dfa 100644
--- a/src/stdio/__printf.c
+++ b/src/stdio/__printf.c
@@ -12,7 +12,7 @@
#include <stdlib.h>
#include "_stdio.h"
-#if (!defined __STDC_VERSION__) || (__STDC_VERSION__ < 199909L)
+#if (!defined __STDC_VERSION__) || (__STDC_VERSION__ < 199901L)
#include "stdint/intmax_t.h"
#include "stdint/uintmax_t.h"
#include "stdint/intptr_t.h"