aboutsummaryrefslogtreecommitdiffstats
path: root/feature
diff options
context:
space:
mode:
Diffstat (limited to 'feature')
-rw-r--r--feature/regex.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/feature/regex.h b/feature/regex.h
new file mode 100644
index 0000000..d630b99
--- /dev/null
+++ b/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_ */