diff options
-rw-r--r-- | ext/standard/filestat.c | 2 |
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; |