diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2022-11-06 21:02:32 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2022-11-06 21:02:32 -0500 |
commit | 9c96ae64fafb6885fcac42122181d175c34738a2 (patch) | |
tree | ed74b6c574ce38ca85f644ae507c227339972bc6 /src/opt.c | |
parent | b4c7112bafe9b85f3a039a8b34fef2c1f2fa3b58 (diff) | |
download | bfs-9c96ae64fafb6885fcac42122181d175c34738a2.tar.xz |
Fix includes
Diffstat (limited to 'src/opt.c')
-rw-r--r-- | src/opt.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -41,6 +41,7 @@ #include "opt.h" #include "color.h" +#include "config.h" #include "ctx.h" #include "diag.h" #include "eval.h" @@ -50,9 +51,7 @@ #include <limits.h> #include <stdarg.h> #include <stdbool.h> -#include <stdint.h> #include <stdio.h> -#include <string.h> #include <unistd.h> static char *fake_and_arg = "-a"; |