diff options
author | Wez Furlong <wez@php.net> | 2004-01-09 18:09:51 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2004-01-09 18:09:51 +0000 |
commit | e3baf1a07da972a81f46582b02a8c9a85cb1e16d (patch) | |
tree | 76a5ebb15399bf4be1610b82069138907033479c | |
parent | 9f8d30f2153db31f63ea22a541999af8a77948e0 (diff) | |
download | php-git-e3baf1a07da972a81f46582b02a8c9a85cb1e16d.tar.gz |
must be extern to avoid problems with some compilers
-rw-r--r-- | Zend/zend_object_handlers.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_object_handlers.h b/Zend/zend_object_handlers.h index 4f782c1c13..205f410780 100644 --- a/Zend/zend_object_handlers.h +++ b/Zend/zend_object_handlers.h @@ -113,7 +113,7 @@ typedef struct _zend_object_handlers { zend_object_cast_t cast_object; } zend_object_handlers; -ZEND_API zend_object_handlers std_object_handlers; +extern ZEND_API zend_object_handlers std_object_handlers; ZEND_API union _zend_function *zend_std_get_static_method(zend_class_entry *ce, char *function_name_strval, int function_name_strlen TSRMLS_DC); ZEND_API zval **zend_std_get_static_property(zend_class_entry *ce, char *property_name, int property_name_len, zend_bool silent TSRMLS_DC); ZEND_API zend_bool zend_std_unset_static_property(zend_class_entry *ce, char *property_name, int property_name_len TSRMLS_DC); |