blob: d630b993801e5f20a21c227405e3713651a11bbe (
plain)
1
2
3
4
5
6
7
8
9
10
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_ */
|