diff options
author | June McEnroe <june@causal.agency> | 2018-08-20 16:29:31 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-08-20 16:29:31 -0400 |
commit | 431dd32cf12bd84756006fd8fbd3e217343a7e8f (patch) | |
tree | 1109a018b71b48b841029e6260121fbf7dab2852 | |
parent | Add uninstall target (diff) | |
download | catgirl-431dd32cf12bd84756006fd8fbd3e217343a7e8f.tar.gz catgirl-431dd32cf12bd84756006fd8fbd3e217343a7e8f.zip |
Fix missing stdint.h include
-rw-r--r-- | handle.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/handle.c b/handle.c index 89d101a..0036100 100644 --- a/handle.c +++ b/handle.c @@ -17,6 +17,7 @@ #include <ctype.h> #include <err.h> #include <stdarg.h> +#include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> |