diff options
author | Ron Yorston <rmy@pobox.com> | 2014-01-02 14:53:33 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2014-01-02 14:53:33 +0000 |
commit | e7878f61a5d93d604bfa621c4f799ffe839742df (patch) | |
tree | 94a778b089fbdaf3657846762ec08e3814ddb222 /include | |
parent | 3887443c201c8c296e660d70a81a1f35a1b061bc (diff) | |
download | busybox-w32-e7878f61a5d93d604bfa621c4f799ffe839742df.tar.gz busybox-w32-e7878f61a5d93d604bfa621c4f799ffe839742df.tar.bz2 busybox-w32-e7878f61a5d93d604bfa621c4f799ffe839742df.zip |
Provide dummy implementations of seteuid/setegid
Diffstat (limited to 'include')
-rw-r--r-- | include/mingw.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/mingw.h b/include/mingw.h index 577e48a2a..c4748735d 100644 --- a/include/mingw.h +++ b/include/mingw.h | |||
@@ -322,8 +322,10 @@ int mingw_open (const char *filename, int oflags, ...); | |||
322 | int pipe(int filedes[2]); | 322 | int pipe(int filedes[2]); |
323 | NOIMPL(readlink,const char *path UNUSED_PARAM, char *buf UNUSED_PARAM, size_t bufsiz UNUSED_PARAM); | 323 | NOIMPL(readlink,const char *path UNUSED_PARAM, char *buf UNUSED_PARAM, size_t bufsiz UNUSED_PARAM); |
324 | NOIMPL(setgid,gid_t gid UNUSED_PARAM); | 324 | NOIMPL(setgid,gid_t gid UNUSED_PARAM); |
325 | NOIMPL(setegid,gid_t gid UNUSED_PARAM); | ||
325 | NOIMPL(setsid,void); | 326 | NOIMPL(setsid,void); |
326 | NOIMPL(setuid,uid_t gid UNUSED_PARAM); | 327 | NOIMPL(setuid,uid_t gid UNUSED_PARAM); |
328 | NOIMPL(seteuid,uid_t gid UNUSED_PARAM); | ||
327 | unsigned int sleep(unsigned int seconds); | 329 | unsigned int sleep(unsigned int seconds); |
328 | NOIMPL(symlink,const char *oldpath UNUSED_PARAM, const char *newpath UNUSED_PARAM); | 330 | NOIMPL(symlink,const char *oldpath UNUSED_PARAM, const char *newpath UNUSED_PARAM); |
329 | static inline void sync(void) {} | 331 | static inline void sync(void) {} |