summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Richards <rrichards@php.net>2006-03-06 20:21:52 +0000
committerRob Richards <rrichards@php.net>2006-03-06 20:21:52 +0000
commitd36a88bdda0defab9739b9f93b80194cbd2306c7 (patch)
tree6bea2f2c6da5bf0d9a4c095aca47348929fb725f
parente70571c251503330f71d3445629360c159feac8e (diff)
downloadphp-git-d36a88bdda0defab9739b9f93b80194cbd2306c7.tar.gz
fix win build
-rw-r--r--ext/standard/filestat.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/standard/filestat.c b/ext/standard/filestat.c
index 5229252821..dde2998383 100644
--- a/ext/standard/filestat.c
+++ b/ext/standard/filestat.c
@@ -323,7 +323,7 @@ PHP_FUNCTION(disk_free_space)
}
/* }}} */
-
+#if !defined(WINDOWS)
static void php_do_chgrp(INTERNAL_FUNCTION_PARAMETERS, int do_lchgrp)
{
zval **filename, **group;
@@ -368,6 +368,7 @@ static void php_do_chgrp(INTERNAL_FUNCTION_PARAMETERS, int do_lchgrp)
}
RETURN_TRUE;
}
+#endif
#ifndef NETWARE
/* {{{ proto bool chgrp(string filename, mixed group)