diff options
| author | ilotterytea <iltsu@alright.party> | 2025-04-09 21:55:20 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2025-04-09 21:55:20 +0500 |
| commit | 0487cb46d45ebb23161f9ef8f3135c04a5010b59 (patch) | |
| tree | 80823d9d9789c650701273659363bd13104c3c45 /bot/src | |
| parent | f2bf41bc614c7b070649a29b6fe9ca48cc1eafbb (diff) | |
fix: missing libraries for ping
Diffstat (limited to 'bot/src')
| -rw-r--r-- | bot/src/commands/lua.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bot/src/commands/lua.cpp b/bot/src/commands/lua.cpp index 7f70e68..b8d0dee 100644 --- a/bot/src/commands/lua.cpp +++ b/bot/src/commands/lua.cpp @@ -1,5 +1,9 @@ #include "commands/lua.hpp" +#include <sys/resource.h> +#include <sys/types.h> +#include <unistd.h> + #include <algorithm> #include <cmath> #include <memory> |
