diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-08-28 09:55:24 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-08-28 17:33:20 -0400 |
commit | d1febdd40faf2f66a901c42377a6b6efaad1449c (patch) | |
tree | 8dfb2e35de0f7064753ff923491b5914a8046018 /src/opt.c | |
parent | 4890e2754c238c51497a19b67fb2458ef108f558 (diff) | |
download | bfs-d1febdd40faf2f66a901c42377a6b6efaad1449c.tar.xz |
prelude: Split bfs-specific utilities into new bfs.h header
Diffstat (limited to 'src/opt.c')
-rw-r--r-- | src/opt.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -27,6 +27,8 @@ #include "prelude.h" #include "opt.h" + +#include "bfs.h" #include "bftw.h" #include "bit.h" #include "color.h" @@ -38,6 +40,7 @@ #include "expr.h" #include "list.h" #include "pwcache.h" + #include <errno.h> #include <limits.h> #include <stdarg.h> |