From 67dda0e7d6ebbf2e8a164e76c3edb19befc50bca Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Mon, 26 Feb 2007 14:11:14 +0000 Subject: [PATCH] fix folding --- ext/standard/filestat.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/ext/standard/filestat.c b/ext/standard/filestat.c index 68190ad27f..e8e282cf57 100644 --- a/ext/standard/filestat.c +++ b/ext/standard/filestat.c @@ -98,14 +98,15 @@ #define S_IXROOT ( S_IXUSR | S_IXGRP | S_IXOTH ) -PHP_RINIT_FUNCTION(filestat) +PHP_RINIT_FUNCTION(filestat) /* {{{ */ { BG(CurrentStatFile)=NULL; BG(CurrentLStatFile)=NULL; return SUCCESS; } +/* }}} */ -PHP_RSHUTDOWN_FUNCTION(filestat) +PHP_RSHUTDOWN_FUNCTION(filestat) /* {{{ */ { if (BG(CurrentStatFile)) { efree (BG(CurrentStatFile)); @@ -117,6 +118,7 @@ PHP_RSHUTDOWN_FUNCTION(filestat) } return SUCCESS; } +/* }}} */ /* {{{ proto float disk_total_space(string path) U Get total disk space for filesystem that path is on */ @@ -401,7 +403,7 @@ freespace_failure: /* }}} */ #if !defined(WINDOWS) -static void php_do_chgrp(INTERNAL_FUNCTION_PARAMETERS, int do_lchgrp) +static void php_do_chgrp(INTERNAL_FUNCTION_PARAMETERS, int do_lchgrp) /* {{{ */ { char *filename; int filename_len; @@ -474,6 +476,7 @@ static void php_do_chgrp(INTERNAL_FUNCTION_PARAMETERS, int do_lchgrp) } RETURN_TRUE; } +/* }}} */ #endif #ifndef NETWARE @@ -505,7 +508,7 @@ PHP_FUNCTION(lchgrp) #endif /* !NETWARE */ #if !defined(WINDOWS) -static void php_do_chown(INTERNAL_FUNCTION_PARAMETERS, int do_lchown) +static void php_do_chown(INTERNAL_FUNCTION_PARAMETERS, int do_lchown) /* {{{ */ { char *filename; int filename_len; @@ -577,6 +580,7 @@ static void php_do_chown(INTERNAL_FUNCTION_PARAMETERS, int do_lchown) RETURN_FALSE; } } +/* }}} */ #endif #ifndef NETWARE -- 2.50.1