diff options
author | Jakob Kaivo <jkk@ung.org> | 2024-06-07 14:50:18 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2024-06-07 14:50:18 -0400 |
commit | fd466889b49dfe528567587183c2aedd27836f27 (patch) | |
tree | 02802cd3785b46a627530427d0e8774742754a7a /src/stdio/sscanf.c | |
parent | c195cb021ead7de765a0b37f5ab793802be46731 (diff) |
split formatted I/O header, unify undefined behavior reporting with UNDEFINED_FMT() macro
Diffstat (limited to 'src/stdio/sscanf.c')
-rw-r--r-- | src/stdio/sscanf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdio/sscanf.c b/src/stdio/sscanf.c index 4fab8b61..c9f1c1f6 100644 --- a/src/stdio/sscanf.c +++ b/src/stdio/sscanf.c @@ -1,7 +1,7 @@ #include <stdarg.h> #include <stdio.h> #include <string.h> -#include "_stdio.h" +#include "_format.h" /** read formatted input from a string **/ |