From e7878f61a5d93d604bfa621c4f799ffe839742df Mon Sep 17 00:00:00 2001 From: Ron Yorston Date: Thu, 2 Jan 2014 14:53:33 +0000 Subject: Provide dummy implementations of seteuid/setegid --- include/mingw.h | 2 ++ 1 file changed, 2 insertions(+) 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, ...); int pipe(int filedes[2]); NOIMPL(readlink,const char *path UNUSED_PARAM, char *buf UNUSED_PARAM, size_t bufsiz UNUSED_PARAM); NOIMPL(setgid,gid_t gid UNUSED_PARAM); +NOIMPL(setegid,gid_t gid UNUSED_PARAM); NOIMPL(setsid,void); NOIMPL(setuid,uid_t gid UNUSED_PARAM); +NOIMPL(seteuid,uid_t gid UNUSED_PARAM); unsigned int sleep(unsigned int seconds); NOIMPL(symlink,const char *oldpath UNUSED_PARAM, const char *newpath UNUSED_PARAM); static inline void sync(void) {} -- cgit v1.2.3-55-g6feb