summaryrefslogtreecommitdiff
path: root/ext/standard/pageinfo.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/pageinfo.c
parent5a4c63db531a762e2a2de025b0583293b1e7c679 (diff)
downloadphp-git-39691bed9e9ce9480b2ee80edd275dca67ec840f.tar.gz
conv_proto *.[ch]
Diffstat (limited to 'ext/standard/pageinfo.c')
-rw-r--r--ext/standard/pageinfo.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/standard/pageinfo.c b/ext/standard/pageinfo.c
index 35b4a471a5..d1b3887239 100644
--- a/ext/standard/pageinfo.c
+++ b/ext/standard/pageinfo.c
@@ -100,7 +100,7 @@ long _php3_getuid(void)
/* {{{ proto int getmyuid(void)
Get PHP script owner's UID */
-void php3_getmyuid(INTERNAL_FUNCTION_PARAMETERS)
+PHP_FUNCTION(getmyuid)
{
long uid;
@@ -115,7 +115,7 @@ void php3_getmyuid(INTERNAL_FUNCTION_PARAMETERS)
/* {{{ proto int getmypid(void)
Get current process ID */
-void php3_getmypid(INTERNAL_FUNCTION_PARAMETERS)
+PHP_FUNCTION(getmypid)
{
int pid;
@@ -130,7 +130,7 @@ void php3_getmypid(INTERNAL_FUNCTION_PARAMETERS)
/* {{{ proto int getmyinode(void)
Get the inode of the current script being parsed */
-void php3_getmyinode(INTERNAL_FUNCTION_PARAMETERS)
+PHP_FUNCTION(getmyinode)
{
_php3_statpage();
if (page_inode < 0) {
@@ -143,7 +143,7 @@ void php3_getmyinode(INTERNAL_FUNCTION_PARAMETERS)
/* {{{ proto int getlastmod(void)
Get time of last page modification */
-void php3_getlastmod(INTERNAL_FUNCTION_PARAMETERS)
+PHP_FUNCTION(getlastmod)
{
_php3_statpage();
if (page_mtime < 0) {