From 2682ef294e1f650192fe5b8e699ebda2db438db3 Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Sun, 27 Aug 2023 11:59:15 +0200 Subject: [PATCH] added missing header include in parser --- src/chat/parser.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/chat/parser.c b/src/chat/parser.c index 3db3cfb..d6fdd4e 100644 --- a/src/chat/parser.c +++ b/src/chat/parser.c @@ -16,14 +16,16 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ +#include + #include #include +#include + #include #include -#include - char *why2_yml_read(char *path, char *key) { FILE *file = fopen(path, "r");