diff options
| author | WormHeamer | 2025-12-02 06:59:24 -0500 |
|---|---|---|
| committer | WormHeamer | 2025-12-02 06:59:24 -0500 |
| commit | 9a33bc820266891cec4205ec9bd6e22bacf36790 (patch) | |
| tree | dac9f175d925bb3591135772d9faa5a70b67e000 | |
| parent | 5b6ee7e762b7b6db2e4979d740a104d7b8dc15fd (diff) | |
move stdio.h dep up (for FILE)
| -rw-r--r-- | strio.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,6 +4,7 @@ #include "str.h" #include "arena.h" #include <stdarg.h> +#include <stdio.h> int read_all(FILE *f, Str *buf, Arena *a); int next_line(Str *src, Str *line); @@ -24,7 +25,6 @@ const char *cstr_fmt(Arena *arena, const char *fmt, ...); #ifdef STRIO_IMPL -#include <stdio.h> #include <stdint.h> #include <stdarg.h> |
