@@ -425,7 +425,7 @@ const zend_function_entry date_functions[] = {
425425 PHP_FE (date_sunrise , arginfo_date_sunrise )
426426 PHP_FE (date_sunset , arginfo_date_sunset )
427427 PHP_FE (date_sun_info , arginfo_date_sun_info )
428- { NULL , NULL , NULL }
428+ PHP_FE_END
429429};
430430
431431const zend_function_entry date_funcs_date [] = {
@@ -447,7 +447,7 @@ const zend_function_entry date_funcs_date[] = {
447447 PHP_ME_MAPPING (setTimestamp , date_timestamp_set , arginfo_date_method_timestamp_set , 0 )
448448 PHP_ME_MAPPING (getTimestamp , date_timestamp_get , arginfo_date_method_timestamp_get , 0 )
449449 PHP_ME_MAPPING (diff , date_diff , arginfo_date_method_diff , 0 )
450- { NULL , NULL , NULL }
450+ PHP_FE_END
451451};
452452
453453const zend_function_entry date_funcs_timezone [] = {
@@ -458,19 +458,19 @@ const zend_function_entry date_funcs_timezone[] = {
458458 PHP_ME_MAPPING (getLocation , timezone_location_get , arginfo_timezone_method_location_get , 0 )
459459 PHP_ME_MAPPING (listAbbreviations , timezone_abbreviations_list , arginfo_timezone_abbreviations_list , ZEND_ACC_PUBLIC |ZEND_ACC_STATIC )
460460 PHP_ME_MAPPING (listIdentifiers , timezone_identifiers_list , arginfo_timezone_identifiers_list , ZEND_ACC_PUBLIC |ZEND_ACC_STATIC )
461- { NULL , NULL , NULL }
461+ PHP_FE_END
462462};
463463
464464const zend_function_entry date_funcs_interval [] = {
465465 PHP_ME (DateInterval , __construct , arginfo_date_interval_construct , ZEND_ACC_CTOR |ZEND_ACC_PUBLIC )
466466 PHP_ME_MAPPING (format , date_interval_format , arginfo_date_method_interval_format , 0 )
467467 PHP_ME_MAPPING (createFromDateString , date_interval_create_from_date_string , arginfo_date_interval_create_from_date_string , ZEND_ACC_PUBLIC |ZEND_ACC_STATIC )
468- { NULL , NULL , NULL }
468+ PHP_FE_END
469469};
470470
471471const zend_function_entry date_funcs_period [] = {
472472 PHP_ME (DatePeriod , __construct , arginfo_date_period_construct , ZEND_ACC_CTOR |ZEND_ACC_PUBLIC )
473- { NULL , NULL , NULL }
473+ PHP_FE_END
474474};
475475
476476static char * guess_timezone (const timelib_tzdb * tzdb TSRMLS_DC );
0 commit comments