summaryrefslogtreecommitdiff
path: root/ext/ereg/regex/regex_extra.h
blob: d668f7613f8d480c1eecec8a3c373af2ea4276b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* do not frame this - we must be able to include this file multiple times */

#undef regexec
#undef regerror
#undef regfree
#undef regcomp

#if (defined(REGEX) && REGEX == 1) || (!defined(REGEX))

#ifndef PHP_WIN32

#ifndef PHP_NO_ALIASES

#define regexec php_regexec
#define regerror php_regerror
#define regfree php_regfree
#define regcomp php_regcomp

#endif

#endif

#endif