aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2014-01-02 14:53:33 +0000
committerRon Yorston <rmy@pobox.com>2014-01-02 14:53:33 +0000
commite7878f61a5d93d604bfa621c4f799ffe839742df (patch)
tree94a778b089fbdaf3657846762ec08e3814ddb222 /include
parent3887443c201c8c296e660d70a81a1f35a1b061bc (diff)
downloadbusybox-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.h2
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, ...);
322int pipe(int filedes[2]); 322int pipe(int filedes[2]);
323NOIMPL(readlink,const char *path UNUSED_PARAM, char *buf UNUSED_PARAM, size_t bufsiz UNUSED_PARAM); 323NOIMPL(readlink,const char *path UNUSED_PARAM, char *buf UNUSED_PARAM, size_t bufsiz UNUSED_PARAM);
324NOIMPL(setgid,gid_t gid UNUSED_PARAM); 324NOIMPL(setgid,gid_t gid UNUSED_PARAM);
325NOIMPL(setegid,gid_t gid UNUSED_PARAM);
325NOIMPL(setsid,void); 326NOIMPL(setsid,void);
326NOIMPL(setuid,uid_t gid UNUSED_PARAM); 327NOIMPL(setuid,uid_t gid UNUSED_PARAM);
328NOIMPL(seteuid,uid_t gid UNUSED_PARAM);
327unsigned int sleep(unsigned int seconds); 329unsigned int sleep(unsigned int seconds);
328NOIMPL(symlink,const char *oldpath UNUSED_PARAM, const char *newpath UNUSED_PARAM); 330NOIMPL(symlink,const char *oldpath UNUSED_PARAM, const char *newpath UNUSED_PARAM);
329static inline void sync(void) {} 331static inline void sync(void) {}