summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorMichael Wallner <mike@php.net>2006-09-03 09:09:56 +0000
committerMichael Wallner <mike@php.net>2006-09-03 09:09:56 +0000
commiteca5331a81aa62e5183624f50d0f1a564f01709d (patch)
tree1bbad7125867d62438a113055bf07f449ee7e060 /ext
parenteb958c080e238b7cb276fb67a9a7c70136d55c3a (diff)
downloadphp-git-eca5331a81aa62e5183624f50d0f1a564f01709d.tar.gz
- attempt to fix #38696
Diffstat (limited to 'ext')
-rw-r--r--ext/date/php_date.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/date/php_date.c b/ext/date/php_date.c
index ad790ee545..996dd84f48 100644
--- a/ext/date/php_date.c
+++ b/ext/date/php_date.c
@@ -1477,7 +1477,7 @@ static void date_register_classes(TSRMLS_D)
date_object_handlers_timezone.clone_obj = date_object_clone_timezone;
}
-inline zend_object_value date_object_new_date_ex(zend_class_entry *class_type, php_date_obj **ptr TSRMLS_DC)
+static inline zend_object_value date_object_new_date_ex(zend_class_entry *class_type, php_date_obj **ptr TSRMLS_DC)
{
php_date_obj *intern;
zend_object_value retval;
@@ -1524,7 +1524,7 @@ static zend_object_value date_object_clone_date(zval *this_ptr TSRMLS_DC)
return new_ov;
}
-inline zend_object_value date_object_new_timezone_ex(zend_class_entry *class_type, php_timezone_obj **ptr TSRMLS_DC)
+static inline zend_object_value date_object_new_timezone_ex(zend_class_entry *class_type, php_timezone_obj **ptr TSRMLS_DC)
{
php_timezone_obj *intern;
zend_object_value retval;