From b6eebdd5fbf1e2314b6ef1b952e5ad1cfb20a63f Mon Sep 17 00:00:00 2001 From: CPunch Date: Mon, 27 Jun 2022 19:02:49 -0500 Subject: [PATCH] Bot: fixed shell include errors --- bot/include/shell.h | 4 ++-- bot/src/shell.c | 1 + lib/include/laika.h | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/bot/include/shell.h b/bot/include/shell.h index 9f445fa..799deef 100644 --- a/bot/include/shell.h +++ b/bot/include/shell.h @@ -1,8 +1,8 @@ #ifndef LAIKA_SHELL_H #define LAIKA_SHELL_H -#include -#include +#include "laika.h" +#include "lpacket.h" #define LAIKA_SHELL_TASK_DELTA 50 diff --git a/bot/src/shell.c b/bot/src/shell.c index ec93ce9..a63c367 100644 --- a/bot/src/shell.c +++ b/bot/src/shell.c @@ -4,6 +4,7 @@ #include "lerror.h" #include "lmem.h" +#include #include #include #include diff --git a/lib/include/laika.h b/lib/include/laika.h index d855865..0214341 100644 --- a/lib/include/laika.h +++ b/lib/include/laika.h @@ -9,6 +9,7 @@ #include #include #include +#include #ifdef DEBUG # define LAIKA_DEBUG(...) \