From: foobar Date: Thu, 5 Sep 2002 21:16:34 +0000 (+0000) Subject: Remove unnecessarily commented code. X-Git-Tag: RELEASE_0_91~84 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=71ecad8fbe2b0a72e01c08f35dbe895abd0aafb6;p=php Remove unnecessarily commented code. --- diff --git a/ext/standard/filestat.c b/ext/standard/filestat.c index 87c5013fc0..4195aa0f8e 100644 --- a/ext/standard/filestat.c +++ b/ext/standard/filestat.c @@ -337,7 +337,6 @@ PHP_FUNCTION(disk_free_space) Change file group */ PHP_FUNCTION(chgrp) { -/*#ifndef WINDOWS*/ #if !defined(WINDOWS) && !defined(NETWARE) /* I guess 'chgrp' won't be available on NetWare */ pval **filename, **group; gid_t gid; @@ -386,7 +385,6 @@ PHP_FUNCTION(chgrp) Change file owner */ PHP_FUNCTION(chown) { -/*#ifndef WINDOWS*/ #if !defined(WINDOWS) && !defined(NETWARE) /* I guess 'chown' won't be available on NetWare */ pval **filename, **user; int ret;