diff options
author | Tyler Murphy <tylerm@tylerm.dev> | 2023-05-04 16:10:37 -0400 |
---|---|---|
committer | Tyler Murphy <tylerm@tylerm.dev> | 2023-05-04 16:10:37 -0400 |
commit | b1364be7e271c5a080e29efcda209a190a82d6d9 (patch) | |
tree | fc64d1546e59b5ed1c2c204612b6181bc401c27f /src/command.h | |
parent | grep (diff) | |
download | lazysphere-b1364be7e271c5a080e29efcda209a190a82d6d9.tar.gz lazysphere-b1364be7e271c5a080e29efcda209a190a82d6d9.tar.bz2 lazysphere-b1364be7e271c5a080e29efcda209a190a82d6d9.zip |
ansii c
Diffstat (limited to 'src/command.h')
-rw-r--r-- | src/command.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/command.h b/src/command.h index d614c75..cca2877 100644 --- a/src/command.h +++ b/src/command.h @@ -1,10 +1,12 @@ +#ifndef COMMAND_H +#define COMMAND_H + #include "util/shared.h" #include "util/stack.h" #include "util/regex.h" #include <stdint.h> #include <stdlib.h> -#include <stdbool.h> #include <stdio.h> #include <unistd.h> #include <errno.h> @@ -39,3 +41,5 @@ COMMAND(cp); COMMAND(makedir); COMMAND(mv); COMMAND(grep); + +#endif |