return setgroups() decl to libbb, it is needed if we use libpwdgrp.
authorDenis Vlasenko <vda.linux@googlemail.com>
Thu, 25 Sep 2008 10:20:46 +0000 (10:20 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Thu, 25 Sep 2008 10:20:46 +0000 (10:20 -0000)
include/libbb.h

index 815a3f3d2e24987ed6488fe0dd8526358e4047c2..3b4715e33f68d45342492f045fa28f0dcfd4b9a5 100644 (file)
 #endif
 
 /* Some libc's forget to declare these, do it ourself */
-extern char **environ;
 
+extern char **environ;
+/* Set the group set for the current user to GROUPS (N of them).  */
+int setgroups(size_t n, const gid_t *groups);
 #if defined(__GLIBC__) && __GLIBC__ < 2
 int vdprintf(int d, const char *format, va_list ap);
 #endif
@@ -107,7 +109,7 @@ struct sysinfo {
        unsigned long totalhigh;        /* Total high memory size */
        unsigned long freehigh;         /* Available high memory size */
        unsigned int mem_unit;          /* Memory unit size in bytes */
-       char _f[20 - 2*sizeof(long) - sizeof(int)]; /* Padding: libc5 uses this.. */
+       char _f[20 - 2 * sizeof(long) - sizeof(int)]; /* Padding: libc5 uses this.. */
 };
 int sysinfo(struct sysinfo* info);