summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWormHeamer2025-08-30 22:08:27 -0400
committerWormHeamer2025-08-30 22:08:27 -0400
commitf6060c25104b3da8854671030a30b65876ce2404 (patch)
tree2f043c43a5ffbf11db030504d518318cdd247d69
parent6d41efa688679f336b48302f16a9e3ea69aac5b0 (diff)
add stdarg.h dep to strio.h
-rw-r--r--strio.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/strio.h b/strio.h
index ab4d2bc..a99f8c3 100644
--- a/strio.h
+++ b/strio.h
@@ -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);