diff options
author | Rui Hirokawa <hirokawa@php.net> | 2002-01-14 03:08:40 +0000 |
---|---|---|
committer | Rui Hirokawa <hirokawa@php.net> | 2002-01-14 03:08:40 +0000 |
commit | 0544cdca3a87cad721451ea9d234c348cfbadf03 (patch) | |
tree | c59989e32182147ac859e03a4bafaa728df78831 /ext/mbstring/mbregex.c | |
parent | a95ff8e6e3d4825e5e87570e55e87f02935c6e73 (diff) | |
download | php-git-0544cdca3a87cad721451ea9d234c348cfbadf03.tar.gz |
fixed an error in mbstring caused by confliction with regex.
Diffstat (limited to 'ext/mbstring/mbregex.c')
-rw-r--r-- | ext/mbstring/mbregex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/mbstring/mbregex.c b/ext/mbstring/mbregex.c index d43726cbc5..04c6d214f3 100644 --- a/ext/mbstring/mbregex.c +++ b/ext/mbstring/mbregex.c @@ -522,7 +522,7 @@ enum regexpcode The argument SYNTAX is a bit-mask comprised of the various bits defined in regex.h. */ - +#if 0 long re_set_syntax(syntax) long syntax; @@ -530,7 +530,7 @@ re_set_syntax(syntax) /* obsolete */ return 0; } - +#endif /* Macros for re_compile_pattern, which is found below these definitions. */ |