diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2022-11-10 15:33:52 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2022-11-10 15:33:52 -0500 |
commit | 0f76e46e79748277a22303dae82dcb91c551863e (patch) | |
tree | 339a3da13deb21655c9c1900638f40ad858cd047 | |
parent | 0879126bb44aa9761a920946f35f5aa697717445 (diff) | |
download | bfs-0f76e46e79748277a22303dae82dcb91c551863e.tar.xz |
xregex: Fix build without Oniguruma
-rw-r--r-- | src/xregex.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/xregex.c b/src/xregex.c index 3e14280..6f0e5a1 100644 --- a/src/xregex.c +++ b/src/xregex.c @@ -15,6 +15,7 @@ ****************************************************************************/ #include "xregex.h" +#include "config.h" #include <assert.h> #include <errno.h> #include <stdlib.h> |