diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-03-11 09:51:03 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-03-11 13:41:29 -0400 |
commit | 2c3ef3a06ee1f951f6d68be6d0d3f6a1822b05b7 (patch) | |
tree | 1474b759607c47db6c7cc95986a4f9ef9956ba18 /src/opt.c | |
parent | f9e9e5f9013cc2e9d238cbcad9a1dfaf3a529aac (diff) | |
download | bfs-2c3ef3a06ee1f951f6d68be6d0d3f6a1822b05b7.tar.xz |
Re-run include-what-you-use
Diffstat (limited to 'src/opt.c')
-rw-r--r-- | src/opt.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -26,11 +26,13 @@ */ #include "opt.h" +#include "bftw.h" #include "bit.h" #include "color.h" #include "config.h" #include "ctx.h" #include "diag.h" +#include "dir.h" #include "eval.h" #include "exec.h" #include "expr.h" @@ -40,7 +42,6 @@ #include <limits.h> #include <stdarg.h> #include <stdio.h> -#include <string.h> #include <unistd.h> static char *fake_and_arg = "-and"; |