summaryrefslogtreecommitdiff
path: root/ext/standard/link.c
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>1999-05-16 11:19:26 +0000
committerSascha Schumann <sas@php.net>1999-05-16 11:19:26 +0000
commit39691bed9e9ce9480b2ee80edd275dca67ec840f (patch)
tree1157b0b5da25c06762da69493874e66e308e4c9c /ext/standard/link.c
parent5a4c63db531a762e2a2de025b0583293b1e7c679 (diff)
downloadphp-git-39691bed9e9ce9480b2ee80edd275dca67ec840f.tar.gz
conv_proto *.[ch]
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 6cf79471f4..0f5742901f 100644
--- a/ext/standard/link.c
+++ b/ext/standard/link.c
@@ -62,7 +62,7 @@
/* {{{ proto string readlink(string filename)
Return the target of a symbolic link */
-void php3_readlink(INTERNAL_FUNCTION_PARAMETERS)
+PHP_FUNCTION(readlink)
{
#if HAVE_SYMLINK
pval *filename;
@@ -88,7 +88,7 @@ void php3_readlink(INTERNAL_FUNCTION_PARAMETERS)
/* {{{ proto int linkinfo(string filename)
Returns the st_dev field of the UNIX C stat structure describing the link */
-void php3_linkinfo(INTERNAL_FUNCTION_PARAMETERS)
+PHP_FUNCTION(linkinfo)
{
#if HAVE_SYMLINK
pval *filename;
@@ -112,7 +112,7 @@ void php3_linkinfo(INTERNAL_FUNCTION_PARAMETERS)
/* {{{ proto int symlink(string target, string link)
Create a symbolic link */
-void php3_symlink(INTERNAL_FUNCTION_PARAMETERS)
+PHP_FUNCTION(symlink)
{
#if HAVE_SYMLINK
pval *topath, *frompath;
@@ -140,7 +140,7 @@ void php3_symlink(INTERNAL_FUNCTION_PARAMETERS)
/* {{{ proto int link(string target, string link)
Create a hard link */
-void php3_link(INTERNAL_FUNCTION_PARAMETERS)
+PHP_FUNCTION(link)
{
#if HAVE_LINK
pval *topath, *frompath;
@@ -168,7 +168,7 @@ void php3_link(INTERNAL_FUNCTION_PARAMETERS)
/* {{{ proto int unlink(string filename)
Delete a file */
-void php3_unlink(INTERNAL_FUNCTION_PARAMETERS)
+PHP_FUNCTION(unlink)
{
pval *filename;
int ret;