aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2013-03-26 13:53:03 +0000
committerRon Yorston <rmy@pobox.com>2013-03-26 13:53:03 +0000
commite4f28beec255ea2e233e0f016d4795d13a24bfae (patch)
treec3037bd6674c1d3ddf123a71c8b593ba3924cce8 /include
parentbc81569f18e1d1ec53a7f631da68997705a1bf4e (diff)
downloadbusybox-w32-e4f28beec255ea2e233e0f016d4795d13a24bfae.tar.gz
busybox-w32-e4f28beec255ea2e233e0f016d4795d13a24bfae.tar.bz2
busybox-w32-e4f28beec255ea2e233e0f016d4795d13a24bfae.zip
Provide fake fchmod implementation
Diffstat (limited to 'include')
-rw-r--r--include/mingw.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mingw.h b/include/mingw.h
index b39fcae3d..577e48a2a 100644
--- a/include/mingw.h
+++ b/include/mingw.h
@@ -228,7 +228,7 @@ typedef int nlink_t;
228#define S_IWOTH (S_IWGRP >> 3) 228#define S_IWOTH (S_IWGRP >> 3)
229#define S_IXOTH (S_IXGRP >> 3) 229#define S_IXOTH (S_IXGRP >> 3)
230 230
231NOIMPL(fchmod,int fildes UNUSED_PARAM, mode_t mode UNUSED_PARAM); 231IMPL(fchmod,int,0,int fildes UNUSED_PARAM, mode_t mode UNUSED_PARAM);
232NOIMPL(fchown,int fd UNUSED_PARAM, uid_t uid UNUSED_PARAM, gid_t gid UNUSED_PARAM); 232NOIMPL(fchown,int fd UNUSED_PARAM, uid_t uid UNUSED_PARAM, gid_t gid UNUSED_PARAM);
233int mingw_mkdir(const char *path, int mode); 233int mingw_mkdir(const char *path, int mode);
234#define mkdir mingw_mkdir 234#define mkdir mingw_mkdir