diff options
author | June McEnroe <june@causal.agency> | 2022-02-23 12:50:31 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2022-02-23 12:50:31 -0500 |
commit | 4e8ba236b606d53f5cf4688d977ac3c4196c690b (patch) | |
tree | 0d9222971ad37f92ac4879723944ed7c981d7680 | |
parent | Document the interface (diff) | |
download | catgirl-4e8ba236b606d53f5cf4688d977ac3c4196c690b.tar.gz catgirl-4e8ba236b606d53f5cf4688d977ac3c4196c690b.zip |
Add missing unistd.h include in input.c
-rw-r--r-- | input.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/input.c b/input.c index de8cecf..f3813c4 100644 --- a/input.c +++ b/input.c @@ -37,6 +37,7 @@ #include <string.h> #include <sysexits.h> #include <termios.h> +#include <unistd.h> #include <wchar.h> #include <wctype.h> |