diff options
author | Andrei Zmievski <andrei@php.net> | 2002-09-25 14:02:34 +0000 |
---|---|---|
committer | Andrei Zmievski <andrei@php.net> | 2002-09-25 14:02:34 +0000 |
commit | 27255d741935e54ce20bcfe6a8809214bee15e2a (patch) | |
tree | 3da30823c13bc8a0cffda4ef9cfe257cf851b92f /ext/ereg/php_ereg.h | |
parent | 0c5538d077029b6701aa277275d11adc5696f415 (diff) | |
download | php-git-27255d741935e54ce20bcfe6a8809214bee15e2a.tar.gz |
Fix bug #17570.
Diffstat (limited to 'ext/ereg/php_ereg.h')
-rw-r--r-- | ext/ereg/php_ereg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/ereg/php_ereg.h b/ext/ereg/php_ereg.h index 38c99837e0..92947eaa92 100644 --- a/ext/ereg/php_ereg.h +++ b/ext/ereg/php_ereg.h @@ -32,9 +32,9 @@ PHP_FUNCTION(split); PHP_FUNCTION(spliti); PHPAPI PHP_FUNCTION(sql_regcase); -typedef struct { +ZEND_BEGIN_MODULE_GLOBALS(reg) HashTable ht_rc; -} php_reg_globals; +ZEND_END_MODULE_GLOBALS(reg) PHP_MINIT_FUNCTION(regex); PHP_MSHUTDOWN_FUNCTION(regex); |