diff options
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. */ |