diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2020-11-12 23:03:10 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2020-11-12 23:03:10 -0500 |
commit | 0a2852c4cd8a8fb95b4a3ba84d768c774186adc1 (patch) | |
tree | f7b107086812336e959806c7829cd31d04685d77 /parse.c | |
parent | 3fc709530adbede1744a6d785598f8456d5f2626 (diff) | |
download | bfs-0a2852c4cd8a8fb95b4a3ba84d768c774186adc1.tar.xz |
Include what I use
Thanks to https://github.com/include-what-you-use/include-what-you-use
Diffstat (limited to 'parse.c')
-rw-r--r-- | parse.c | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -23,15 +23,15 @@ #include "parse.h" #include "bfs.h" +#include "bftw.h" +#include "color.h" #include "ctx.h" #include "darray.h" #include "diag.h" -#include "dstring.h" #include "eval.h" #include "exec.h" #include "expr.h" #include "fsade.h" -#include "mtab.h" #include "opt.h" #include "printf.h" #include "pwcache.h" @@ -41,7 +41,6 @@ #include "typo.h" #include "util.h" #include <assert.h> -#include <ctype.h> #include <errno.h> #include <fcntl.h> #include <fnmatch.h> @@ -50,11 +49,11 @@ #include <pwd.h> #include <regex.h> #include <stdarg.h> +#include <stdbool.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/time.h> -#include <sys/types.h> #include <sys/stat.h> #include <sys/wait.h> #include <time.h> |