diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2022-11-06 17:47:23 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2022-11-06 17:47:23 -0500 |
commit | b4c7112bafe9b85f3a039a8b34fef2c1f2fa3b58 (patch) | |
tree | 4dbd16b8dac10609434eb8744f95762c4d178c19 /src/xregex.c | |
parent | 096884c4fe1fb922eab2797d4583ca2ae8ae2600 (diff) | |
download | bfs-b4c7112bafe9b85f3a039a8b34fef2c1f2fa3b58.tar.xz |
bfstd: Rename from util and reorganize it
Diffstat (limited to 'src/xregex.c')
-rw-r--r-- | src/xregex.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xregex.c b/src/xregex.c index 4fa098d..e8d6b23 100644 --- a/src/xregex.c +++ b/src/xregex.c @@ -15,7 +15,8 @@ ****************************************************************************/ #include "xregex.h" -#include "util.h" +#include "bfstd.h" +#include "config.h" #include <assert.h> #include <errno.h> #include <stdlib.h> |