diff options
| author | Jakob Kaivo <jkk@ung.org> | 2024-05-28 15:50:03 -0400 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2024-05-28 15:50:03 -0400 |
| commit | c9ec058657f9f8b3fd39a16f1a9e993b4a1e982e (patch) | |
| tree | 6cf1abadd04a1a9049d82ffe0e78be7f8b4cece2 /src/stdio/__printf.c | |
| parent | b4cd7036bea6c6440fbbcdaebe53c864c87a5646 (diff) | |
abstract out "forced" implementations of functions from future specifications
Diffstat (limited to 'src/stdio/__printf.c')
| -rw-r--r-- | src/stdio/__printf.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/stdio/__printf.c b/src/stdio/__printf.c index 7fa7a46b..1ee488d7 100644 --- a/src/stdio/__printf.c +++ b/src/stdio/__printf.c @@ -10,16 +10,7 @@ #include <unistd.h> #endif -#if __STDC_VERSION__ >= 199901L -#include <inttypes.h> -#else -#include "stdint/intmax_t.h" -#include "stdint/uintmax_t.h" -#include "stdint/intptr_t.h" -#include "stdint/UINTMAX_MAX.h" -#define strtoumax __strtoumax -#include "inttypes/strtoumax.c" -#endif +#include "_forced/strtoumax.h" #include "_stdio.h" |
