From: Alan Cox Date: Sat, 16 Jan 2016 15:26:16 +0000 (+0000) Subject: grp.h: setgroups is a syscall it shouldn't be here X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=86858a473caa49f0c0eb0a0b4c43b98453db7c82;p=FUZIX.git grp.h: setgroups is a syscall it shouldn't be here Fixes the Dragon NX build failure. Reported by Tony Jewell --- diff --git a/Library/include/grp.h b/Library/include/grp.h index 0c6dd415..4b9ca274 100644 --- a/Library/include/grp.h +++ b/Library/include/grp.h @@ -25,7 +25,6 @@ extern struct group *getgrnam __P((const char * name)); extern struct group * fgetgrent __P((FILE * file)); -extern int setgroups __P((size_t n, int *groups)); extern int initgroups __P((const char * user, gid_t gid)); extern struct group * __getgrent __P((int grp_fd));