diff options
author | Tyler Murphy <tylerm@tylerm.dev> | 2023-05-01 00:38:33 -0400 |
---|---|---|
committer | Tyler Murphy <tylerm@tylerm.dev> | 2023-05-01 00:38:33 -0400 |
commit | 5a0ec4ed3711beda63450fcfe0bbbd1656fbb1ae (patch) | |
tree | ea3b2d94a7c5a1d368e09a60975976fcb6c21ce2 /src/command.h | |
parent | tee, whoami, wc (diff) | |
download | lazysphere-5a0ec4ed3711beda63450fcfe0bbbd1656fbb1ae.tar.gz lazysphere-5a0ec4ed3711beda63450fcfe0bbbd1656fbb1ae.tar.bz2 lazysphere-5a0ec4ed3711beda63450fcfe0bbbd1656fbb1ae.zip |
move back to c99
Diffstat (limited to 'src/command.h')
-rw-r--r-- | src/command.h | 7 |
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] |