diff options
author | Edin Kadribasic <edink@php.net> | 2002-11-13 23:11:14 +0000 |
---|---|---|
committer | Edin Kadribasic <edink@php.net> | 2002-11-13 23:11:14 +0000 |
commit | 1eddce79ddd08f0d8e9955f9651190847b55df26 (patch) | |
tree | 18a5d42d189da2e5724cedc34b3a2f24ec5ef380 /ext/mbstring/php_mbregex.c | |
parent | 9d04acdaaa93b338cf3a64a7ce5eba5c43c14aa8 (diff) | |
download | php-git-1eddce79ddd08f0d8e9955f9651190847b55df26.tar.gz |
MFB (made mbstring compile on windows again).
Diffstat (limited to 'ext/mbstring/php_mbregex.c')
-rw-r--r-- | ext/mbstring/php_mbregex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/mbstring/php_mbregex.c b/ext/mbstring/php_mbregex.c index dfa93f4eef..8d4dd20ccb 100644 --- a/ext/mbstring/php_mbregex.c +++ b/ext/mbstring/php_mbregex.c @@ -1027,7 +1027,7 @@ PHP_FUNCTION(mb_ereg_search_setpos) /* }}} */ /* {{{ php_mb_regex_set_options */ -PHPAPI int php_mb_regex_set_options( int options TSRMLS_DC) +int php_mb_regex_set_options( int options TSRMLS_DC) { int prev_opt = MBSTRG(regex_default_options); MBSTRG(regex_default_options) = options; @@ -1036,7 +1036,7 @@ PHPAPI int php_mb_regex_set_options( int options TSRMLS_DC) /* }}} */ /* {{{ php_mb_regex_set_options_by_string */ -PHPAPI int php_mb_regex_set_options_by_string( const char *opt_str, int len TSRMLS_DC) +int php_mb_regex_set_options_by_string( const char *opt_str, int len TSRMLS_DC) { int new_opt = 0; _php_mb_regex_init_options( opt_str, len, &new_opt, NULL); |