move setgroups definition to libbb.h so that it no longer inadvertently
authorDenis Vlasenko <vda.linux@googlemail.com>
Sun, 25 May 2008 04:31:54 +0000 (04:31 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Sun, 25 May 2008 04:31:54 +0000 (04:31 -0000)
get hidden attribute

include/grp_.h
include/libbb.h

index 45ee22ba98f197a4a1c99934c9a9369f2cf3a03c..23c4dcc035f519aeff2c20fbf340b41e4c6d48ab 100644 (file)
@@ -36,11 +36,6 @@ struct group {
        char **gr_mem;          /* Member list. */
 };
 
-/* We don't reimplement this, just supplying prototype */
-/* The function itself is in libc */
-/* Set the group set for the current user to GROUPS (N of them).  */
-extern int setgroups(size_t __n, __const gid_t *__groups);
-
 
 #define setgrent     bb_internal_setgrent
 #define endgrent     bb_internal_endgrent
index f50ae3604df1385924c8239eb74197262fe3d2c7..0d6e3af7d82fa70bb9efda3fa986b12ac09abd69 100644 (file)
 # endif
 #endif
 
-/* Some libc's forget to declare these, help them */
+/* Some libc's forget to declare these, do it ourself */
 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