diff options
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index f50ae3604..0d6e3af7d 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -79,9 +79,11 @@ | |||
79 | # endif | 79 | # endif |
80 | #endif | 80 | #endif |
81 | 81 | ||
82 | /* Some libc's forget to declare these, help them */ | 82 | /* Some libc's forget to declare these, do it ourself */ |
83 | extern char **environ; | 83 | extern char **environ; |
84 | 84 | ||
85 | /* Set the group set for the current user to GROUPS (N of them). */ | ||
86 | int setgroups(size_t n, const gid_t *groups); | ||
85 | #if defined(__GLIBC__) && __GLIBC__ < 2 | 87 | #if defined(__GLIBC__) && __GLIBC__ < 2 |
86 | int vdprintf(int d, const char *format, va_list ap); | 88 | int vdprintf(int d, const char *format, va_list ap); |
87 | #endif | 89 | #endif |