diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2023-07-03 07:35:32 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2023-07-04 21:09:16 -0700 |
commit | 8ef18ed5d0caa2a1bedc76004443a4c30c92c6f0 (patch) | |
tree | cba73306d7acf7b624cda22f46aad566a321b5f7 | |
parent | 81f179e777ebe8d5bc2cc80a7e11bb9559df24fd (diff) |
til_stream: add missing include stdio for FILE*
trivial change
-rw-r--r-- | src/til_stream.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/til_stream.h b/src/til_stream.h index e6346fd..5473aec 100644 --- a/src/til_stream.h +++ b/src/til_stream.h @@ -19,6 +19,7 @@ #include <stddef.h> #include <stdint.h> +#include <stdio.h> #include "til_module_context.h" #include "til_setup.h" |