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 /printf.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 'printf.c')
-rw-r--r-- | printf.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -15,11 +15,10 @@ ****************************************************************************/ #include "printf.h" -#include "color.h" +#include "bftw.h" #include "ctx.h" #include "diag.h" #include "dstring.h" -#include "expr.h" #include "mtab.h" #include "pwcache.h" #include "stat.h" @@ -29,9 +28,10 @@ #include <errno.h> #include <grp.h> #include <pwd.h> -#include <stdlib.h> +#include <stdbool.h> #include <stdint.h> #include <stdio.h> +#include <stdlib.h> #include <string.h> #include <time.h> |