summaryrefslogtreecommitdiff
path: root/ext/standard/link.c
diff options
context:
space:
mode:
authorAndrey Hristov <andrey@php.net>1999-07-24 22:16:54 +0000
committerAndrey Hristov <andrey@php.net>1999-07-24 22:16:54 +0000
commit736f4831a5c2aa0412bbcd5016c8be374c0b0161 (patch)
tree938cc9a6bc2b036f060e5fadad49482cdee904fc /ext/standard/link.c
parentf6f0f285cc204df8bc99a2fa0769122396dcee22 (diff)
downloadphp-git-736f4831a5c2aa0412bbcd5016c8be374c0b0161.tar.gz
A bunch of grunt work updating function entries and declarations.
Diffstat (limited to 'ext/standard/link.c')
-rw-r--r--ext/standard/link.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/standard/link.c b/ext/standard/link.c
index 635727b738..c6a2e51686 100644
--- a/ext/standard/link.c
+++ b/ext/standard/link.c
@@ -183,11 +183,11 @@ PHP_FUNCTION(unlink)
/* }}} */
function_entry link_functions[] = {
- {"readlink", php3_readlink, NULL},
- {"linkinfo", php3_linkinfo, NULL},
- {"symlink", php3_symlink, NULL},
- {"link", php3_link, NULL},
- {"unlink", php3_unlink, NULL},
+ PHP_FE(readlink, NULL)
+ PHP_FE(linkinfo, NULL)
+ PHP_FE(symlink, NULL)
+ PHP_FE(link, NULL)
+ PHP_FE(unlink, NULL)
{NULL, NULL, NULL}
};