diff options
author | data-man <dataman@tutanota.com> | 2022-01-24 07:34:59 +0500 |
---|---|---|
committer | data-man <dataman@tutanota.com> | 2022-01-24 07:34:59 +0500 |
commit | 475bc25800451c76d9a721fb35628693758a15e0 (patch) | |
tree | aa46e0fc0be368d98f1fc34853b70b1e6619eedb /expr.h | |
parent | 8199f5c1c599a39ba0a9c4ace0bacde95b4bb483 (diff) | |
download | bfs-475bc25800451c76d9a721fb35628693758a15e0.tar.xz |
Using Oniguruma library (optionally)
Diffstat (limited to 'expr.h')
-rw-r--r-- | expr.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -26,12 +26,17 @@ #include "exec.h" #include "printf.h" #include "stat.h" -#include <regex.h> #include <stdbool.h> #include <stddef.h> #include <sys/types.h> #include <time.h> +#ifdef USE_ONIGURUMA + #include <onigposix.h> +#else + #include <regex.h> +#endif + /** * Possible types of numeric comparison. */ |