diff options
author | Hartmut Holzgraefe <hholzgra@php.net> | 2000-05-23 23:13:02 +0000 |
---|---|---|
committer | Hartmut Holzgraefe <hholzgra@php.net> | 2000-05-23 23:13:02 +0000 |
commit | df4547a3df3768f51e96226240c20df17102dff3 (patch) | |
tree | 9084fad9d9d0133e07e5ee55fc023c700039f5df /ext/standard/basic_functions.c | |
parent | 0fa7618f7c34c4db7cd8ff304d27962b54b59124 (diff) | |
download | php-git-df4547a3df3768f51e96226240c20df17102dff3.tar.gz |
another bunch of proto fixes
Diffstat (limited to 'ext/standard/basic_functions.c')
-rw-r--r-- | ext/standard/basic_functions.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index 8180d0e3c7..895ebddf7f 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -294,7 +294,7 @@ function_entry basic_functions[] = { PHP_FE(register_shutdown_function, NULL) PHP_FE(highlight_file, NULL) - PHP_NAMED_FE(show_source, PHP_FN(highlight_file), NULL) + PHP_FALIAS(show_source, highlight_file , NULL) PHP_FE(highlight_string, NULL) PHP_FE(ini_get, NULL) @@ -1967,7 +1967,7 @@ PHP_FUNCTION(extension_loaded) /* }}} */ -/* proto array get_extension_funcs(string extension_name) +/* {{{ proto array get_extension_funcs(string extension_name) Returns an array with the names of functions belonging to the named extension */ PHP_FUNCTION(get_extension_funcs) { |