From: Zeev Suraski Date: Sun, 12 Mar 2000 18:13:01 +0000 (+0000) Subject: - Define these ones and declare them in modules.h X-Git-Tag: PHP-4.0-RC1~171 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d0b9a3989b491546258206f9160a935e1299091b;p=php - Define these ones and declare them in modules.h --- diff --git a/main/internal_functions.c.in b/main/internal_functions.c.in index 6cb1c500be..d42b5e3051 100644 --- a/main/internal_functions.c.in +++ b/main/internal_functions.c.in @@ -34,11 +34,6 @@ /* SNMP has to be moved to ext */ /* #include "dl/snmp/php3_snmp.h" */ -unsigned char first_arg_force_ref[] = { 1, BYREF_FORCE }; -unsigned char first_arg_allow_ref[] = { 1, BYREF_ALLOW }; -unsigned char second_arg_force_ref[] = { 2, BYREF_NONE, BYREF_FORCE }; -unsigned char second_arg_allow_ref[] = { 2, BYREF_NONE, BYREF_ALLOW }; - zend_module_entry *php_builtin_extensions[] = { @EXT_MODULE_PTRS@ }; diff --git a/main/internal_functions_win32.c b/main/internal_functions_win32.c index 57830151f0..68a679dae0 100644 --- a/main/internal_functions_win32.c +++ b/main/internal_functions_win32.c @@ -60,11 +60,6 @@ /* SNMP has to be moved to ext */ /* #include "dl/snmp/php_snmp.h" */ -unsigned char first_arg_force_ref[] = { 1, BYREF_FORCE }; -unsigned char first_arg_allow_ref[] = { 1, BYREF_ALLOW }; -unsigned char second_arg_force_ref[] = { 2, BYREF_NONE, BYREF_FORCE }; -unsigned char second_arg_allow_ref[] = { 2, BYREF_NONE, BYREF_ALLOW }; - zend_module_entry *php_builtin_extensions[] = { #if WITH_BCMATH phpext_bcmath_ptr,