summaryrefslogtreecommitdiff
path: root/ext/ereg/regex/regex_extra.h
blob: 3db9e4ad1a8e8f53ede63074c38f2f275ac59912 (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))

#if !(WIN32|WINNT)

#ifndef PHP_NO_ALIASES

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

#endif

#endif

#endif