From 475bc25800451c76d9a721fb35628693758a15e0 Mon Sep 17 00:00:00 2001 From: data-man Date: Mon, 24 Jan 2022 07:34:59 +0500 Subject: Using Oniguruma library (optionally) --- expr.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'expr.h') diff --git a/expr.h b/expr.h index c25d1ca..82df7bf 100644 --- a/expr.h +++ b/expr.h @@ -26,12 +26,17 @@ #include "exec.h" #include "printf.h" #include "stat.h" -#include #include #include #include #include +#ifdef USE_ONIGURUMA + #include +#else + #include +#endif + /** * Possible types of numeric comparison. */ -- cgit v1.2.3