summaryrefslogtreecommitdiff
path: root/ext/standard/filestat.c
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2002-09-05 21:16:34 +0000
committerfoobar <sniper@php.net>2002-09-05 21:16:34 +0000
commit71ecad8fbe2b0a72e01c08f35dbe895abd0aafb6 (patch)
treea4d697ec6831588c69e8a9a9cf72f31c57b96874 /ext/standard/filestat.c
parentd94758bec2d23ea12acd2a1db0b73eb1f0afd1f7 (diff)
downloadphp-git-71ecad8fbe2b0a72e01c08f35dbe895abd0aafb6.tar.gz
Remove unnecessarily commented code.
Diffstat (limited to 'ext/standard/filestat.c')
-rw-r--r--ext/standard/filestat.c2
1 files changed, 0 insertions, 2 deletions
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;