diff options
author | Ron Yorston <rmy@pobox.com> | 2014-03-13 16:01:42 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2014-03-13 16:01:42 +0000 |
commit | 02b877e3507f2aa063f157875d87456425642fe8 (patch) | |
tree | 95ee657bfdfaa39901acf757a5c407df12cc120c /include | |
parent | d41903f522d57fe600b916a6fea1c6a8c3a1b632 (diff) | |
download | busybox-w32-02b877e3507f2aa063f157875d87456425642fe8.tar.gz busybox-w32-02b877e3507f2aa063f157875d87456425642fe8.tar.bz2 busybox-w32-02b877e3507f2aa063f157875d87456425642fe8.zip |
Pretend chown succeeds so 'cp -rp' doesn't complain
Diffstat (limited to 'include')
-rw-r--r-- | include/mingw.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mingw.h b/include/mingw.h index 775987b62..219712780 100644 --- a/include/mingw.h +++ b/include/mingw.h | |||
@@ -332,7 +332,7 @@ clock_t times(struct tms *buf); | |||
332 | #define _SC_CLK_TCK 2 | 332 | #define _SC_CLK_TCK 2 |
333 | 333 | ||
334 | IMPL(alarm,unsigned int,0,unsigned int seconds UNUSED_PARAM); | 334 | IMPL(alarm,unsigned int,0,unsigned int seconds UNUSED_PARAM); |
335 | NOIMPL(chown,const char *path UNUSED_PARAM, uid_t uid UNUSED_PARAM, gid_t gid UNUSED_PARAM); | 335 | IMPL(chown,int,0,const char *path UNUSED_PARAM, uid_t uid UNUSED_PARAM, gid_t gid UNUSED_PARAM); |
336 | NOIMPL(chroot,const char *root UNUSED_PARAM); | 336 | NOIMPL(chroot,const char *root UNUSED_PARAM); |
337 | int mingw_dup2 (int fd, int fdto); | 337 | int mingw_dup2 (int fd, int fdto); |
338 | char *mingw_getcwd(char *pointer, int len); | 338 | char *mingw_getcwd(char *pointer, int len); |