@@ -146,9 +146,9 @@ static const zend_function_entry basic_functions[] = { /* {{{ */
146146 PHP_FE (get_html_translation_table , arginfo_get_html_translation_table )
147147 PHP_FE (sha1 , arginfo_sha1 )
148148 PHP_FE (sha1_file , arginfo_sha1_file )
149- PHP_NAMED_FE (md5 ,php_if_md5 , arginfo_md5 )
150- PHP_NAMED_FE (md5_file ,php_if_md5_file , arginfo_md5_file )
151- PHP_NAMED_FE (crc32 ,php_if_crc32 , arginfo_crc32 )
149+ PHP_FE (md5 , arginfo_md5 )
150+ PHP_FE (md5_file , arginfo_md5_file )
151+ PHP_FE (crc32 , arginfo_crc32 )
152152
153153 PHP_FE (iptcparse , arginfo_iptcparse )
154154 PHP_FE (iptcembed , arginfo_iptcembed )
@@ -235,8 +235,8 @@ static const zend_function_entry basic_functions[] = { /* {{{ */
235235 PHP_FE (str_pad , arginfo_str_pad )
236236 PHP_FALIAS (chop , rtrim , arginfo_chop )
237237 PHP_FALIAS (strchr , strstr , arginfo_strchr )
238- PHP_NAMED_FE (sprintf , PHP_FN ( user_sprintf ), arginfo_sprintf )
239- PHP_NAMED_FE (printf , PHP_FN ( user_printf ), arginfo_printf )
238+ PHP_FE (sprintf , arginfo_sprintf )
239+ PHP_FE (printf , arginfo_printf )
240240 PHP_FE (vprintf , arginfo_vprintf )
241241 PHP_FE (vsprintf , arginfo_vsprintf )
242242 PHP_FE (fprintf , arginfo_fprintf )
@@ -361,10 +361,10 @@ static const zend_function_entry basic_functions[] = { /* {{{ */
361361 PHP_FE (fdiv , arginfo_fdiv )
362362 PHP_FE (intdiv , arginfo_intdiv )
363363#ifdef HAVE_INET_NTOP
364- PHP_RAW_NAMED_FE (inet_ntop , zif_inet_ntop , arginfo_inet_ntop )
364+ PHP_FE (inet_ntop , arginfo_inet_ntop )
365365#endif
366366#ifdef HAVE_INET_PTON
367- PHP_RAW_NAMED_FE (inet_pton , php_inet_pton , arginfo_inet_pton )
367+ PHP_FE (inet_pton , arginfo_inet_pton )
368368#endif
369369 PHP_FE (ip2long , arginfo_ip2long )
370370 PHP_FE (long2ip , arginfo_long2ip )
@@ -517,10 +517,10 @@ static const zend_function_entry basic_functions[] = { /* {{{ */
517517 PHP_FE (fgetc , arginfo_fgetc )
518518 PHP_FE (fgets , arginfo_fgets )
519519 PHP_FE (fread , arginfo_fread )
520- PHP_NAMED_FE (fopen , php_if_fopen , arginfo_fopen )
520+ PHP_FE (fopen , arginfo_fopen )
521521 PHP_FE (fpassthru , arginfo_fpassthru )
522- PHP_NAMED_FE (ftruncate , php_if_ftruncate , arginfo_ftruncate )
523- PHP_NAMED_FE (fstat , php_if_fstat , arginfo_fstat )
522+ PHP_FE (ftruncate , arginfo_ftruncate )
523+ PHP_FE (fstat , arginfo_fstat )
524524 PHP_FE (fseek , arginfo_fseek )
525525 PHP_FE (ftell , arginfo_ftell )
526526 PHP_FE (fflush , arginfo_fflush )
@@ -530,7 +530,7 @@ static const zend_function_entry basic_functions[] = { /* {{{ */
530530 PHP_FE (rename , arginfo_rename )
531531 PHP_FE (copy , arginfo_copy )
532532 PHP_FE (tempnam , arginfo_tempnam )
533- PHP_NAMED_FE (tmpfile , php_if_tmpfile , arginfo_tmpfile )
533+ PHP_FE (tmpfile , arginfo_tmpfile )
534534 PHP_FE (file , arginfo_file )
535535 PHP_FE (file_get_contents , arginfo_file_get_contents )
536536 PHP_FE (file_put_contents , arginfo_file_put_contents )
@@ -629,7 +629,7 @@ static const zend_function_entry basic_functions[] = { /* {{{ */
629629
630630 PHP_FE (getcwd , arginfo_getcwd )
631631 PHP_FE (rewinddir , arginfo_rewinddir )
632- PHP_NAMED_FE (readdir , php_if_readdir , arginfo_readdir )
632+ PHP_FE (readdir , arginfo_readdir )
633633 PHP_FALIAS (dir , getdir , arginfo_dir )
634634 PHP_FE (scandir , arginfo_scandir )
635635#ifdef HAVE_GLOB
@@ -653,8 +653,8 @@ static const zend_function_entry basic_functions[] = { /* {{{ */
653653 PHP_FE (is_file , arginfo_is_file )
654654 PHP_FE (is_dir , arginfo_is_dir )
655655 PHP_FE (is_link , arginfo_is_link )
656- PHP_NAMED_FE (stat , php_if_stat , arginfo_stat )
657- PHP_NAMED_FE (lstat , php_if_lstat , arginfo_lstat )
656+ PHP_FE (stat , arginfo_stat )
657+ PHP_FE (lstat , arginfo_lstat )
658658 PHP_FE (chown , arginfo_chown )
659659 PHP_FE (chgrp , arginfo_chgrp )
660660#if HAVE_LCHOWN
@@ -1301,7 +1301,7 @@ PHP_FUNCTION(constant)
13011301#ifdef HAVE_INET_NTOP
13021302/* {{{ proto string|false inet_ntop(string in_addr)
13031303 Converts a packed inet address to a human readable IP address string */
1304- PHP_NAMED_FUNCTION ( zif_inet_ntop )
1304+ PHP_FUNCTION ( inet_ntop )
13051305{
13061306 char * address ;
13071307 size_t address_len ;
@@ -1333,7 +1333,7 @@ PHP_NAMED_FUNCTION(zif_inet_ntop)
13331333#ifdef HAVE_INET_PTON
13341334/* {{{ proto string|false inet_pton(string ip_address)
13351335 Converts a human readable IP address to a packed binary string */
1336- PHP_NAMED_FUNCTION ( php_inet_pton )
1336+ PHP_FUNCTION ( inet_pton )
13371337{
13381338 int ret , af = AF_INET ;
13391339 char * address ;
0 commit comments