summaryrefslogtreecommitdiff
path: root/Zend/zend_API.h
diff options
context:
space:
mode:
authorNuno Lopes <nlopess@php.net>2008-08-12 21:45:52 +0000
committerNuno Lopes <nlopess@php.net>2008-08-12 21:45:52 +0000
commitf87d4530c299167f04a4d2cc076edb2432be3280 (patch)
tree669797e2eec01898ef35e7c8540c575f1792a055 /Zend/zend_API.h
parent9f3cb0ecb39fd53bb504080efbc1b83cc2aa96b4 (diff)
downloadphp-git-f87d4530c299167f04a4d2cc076edb2432be3280.tar.gz
mark empty_fcall_info and empty_fcall_info_cache as constant. a few less bytes in the dirty page :P
Diffstat (limited to 'Zend/zend_API.h')
-rw-r--r--Zend/zend_API.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h
index c548379e07..d8b2b3fcff 100644
--- a/Zend/zend_API.h
+++ b/Zend/zend_API.h
@@ -427,8 +427,8 @@ ZEND_API int add_property_zval_ex(zval *arg, const char *key, uint key_len, zval
ZEND_API int call_user_function(HashTable *function_table, zval **object_pp, zval *function_name, zval *retval_ptr, zend_uint param_count, zval *params[] TSRMLS_DC);
ZEND_API int call_user_function_ex(HashTable *function_table, zval **object_pp, zval *function_name, zval **retval_ptr_ptr, zend_uint param_count, zval **params[], int no_separation, HashTable *symbol_table TSRMLS_DC);
-ZEND_API extern zend_fcall_info empty_fcall_info;
-ZEND_API extern zend_fcall_info_cache empty_fcall_info_cache;
+ZEND_API extern const zend_fcall_info empty_fcall_info;
+ZEND_API extern const zend_fcall_info_cache empty_fcall_info_cache;
/** Build zend_call_info/cache from a zval*
*