diff options
author | WormHeamer | 2025-08-30 22:08:27 -0400 |
---|---|---|
committer | WormHeamer | 2025-08-30 22:08:27 -0400 |
commit | f6060c25104b3da8854671030a30b65876ce2404 (patch) | |
tree | 2f043c43a5ffbf11db030504d518318cdd247d69 | |
parent | 6d41efa688679f336b48302f16a9e3ea69aac5b0 (diff) |
add stdarg.h dep to strio.h
-rw-r--r-- | strio.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -3,6 +3,7 @@ #include "str.h" #include "arena.h" +#include <stdarg.h> int read_all(FILE *f, Str *buf, Arena *a); int next_line(Str *src, Str *line); |