summaryrefslogtreecommitdiff
path: root/src/stdio/fprintf.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2024-06-07 14:50:18 -0400
committerJakob Kaivo <jkk@ung.org>2024-06-07 14:50:18 -0400
commitfd466889b49dfe528567587183c2aedd27836f27 (patch)
tree02802cd3785b46a627530427d0e8774742754a7a /src/stdio/fprintf.c
parentc195cb021ead7de765a0b37f5ab793802be46731 (diff)
split formatted I/O header, unify undefined behavior reporting with UNDEFINED_FMT() macro
Diffstat (limited to 'src/stdio/fprintf.c')
-rw-r--r--src/stdio/fprintf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdio/fprintf.c b/src/stdio/fprintf.c
index bab6455a..c773a72a 100644
--- a/src/stdio/fprintf.c
+++ b/src/stdio/fprintf.c
@@ -1,7 +1,7 @@
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
-#include "_stdio.h"
+#include "_format.h"
/** write formatted output to a file stream **/