diff options
Diffstat (limited to 'src/feature')
-rw-r--r-- | src/feature/regex.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/feature/regex.h b/src/feature/regex.h new file mode 100644 index 0000000..d630b99 --- /dev/null +++ b/src/feature/regex.h @@ -0,0 +1,11 @@ +#ifndef _FEATURE_REGEX_H_ +#define _FEATURE_REGEX_H_ + +#ifdef USE_REGEXP_PCREPOSIX +# include <pcreposix.h> +#elif defined(USE_REGEXP) +# include <sys/types.h> +# include <regex.h> +#endif + +#endif /* _FEATURE_REGEX_H_ */ |