summaryrefslogtreecommitdiff
path: root/bot/src
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2025-04-09 21:55:20 +0500
committerilotterytea <iltsu@alright.party>2025-04-09 21:55:20 +0500
commit0487cb46d45ebb23161f9ef8f3135c04a5010b59 (patch)
tree80823d9d9789c650701273659363bd13104c3c45 /bot/src
parentf2bf41bc614c7b070649a29b6fe9ca48cc1eafbb (diff)
fix: missing libraries for ping
Diffstat (limited to 'bot/src')
-rw-r--r--bot/src/commands/lua.cpp4
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>