summaryrefslogtreecommitdiff
path: root/src/command.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/command.h')
-rw-r--r--src/command.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/command.h b/src/command.h
index ab1ccea..015b1a2 100644
--- a/src/command.h
+++ b/src/command.h
@@ -3,6 +3,13 @@
#include <stdint.h>
#include <stdlib.h>
#include <stdbool.h>
+#include <stdio.h>
+#include <unistd.h>
+#include <errno.h>
+#include <string.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <sys/ioctl.h>
#define ARGUMENTS int argc, char** argv
#define NEXT_ARGS argc - 1, &argv[1]