aboutsummaryrefslogtreecommitdiff
path: root/include/libbb.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/libbb.h')
-rw-r--r--include/libbb.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h
index ff4a67481..11d52c08c 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -1273,7 +1273,11 @@ struct cached_groupinfo {
1273}; 1273};
1274uid_t FAST_FUNC get_cached_euid(uid_t *euid); 1274uid_t FAST_FUNC get_cached_euid(uid_t *euid);
1275gid_t FAST_FUNC get_cached_egid(gid_t *egid); 1275gid_t FAST_FUNC get_cached_egid(gid_t *egid);
1276#if !ENABLE_PLATFORM_MINGW32
1276int FAST_FUNC is_in_supplementary_groups(struct cached_groupinfo *groupinfo, gid_t gid); 1277int FAST_FUNC is_in_supplementary_groups(struct cached_groupinfo *groupinfo, gid_t gid);
1278#else
1279# define is_in_supplementary_groups(g, i) (FALSE)
1280#endif
1277 1281
1278#if ENABLE_FEATURE_UTMP 1282#if ENABLE_FEATURE_UTMP
1279void FAST_FUNC write_new_utmp(pid_t pid, int new_type, const char *tty_name, const char *username, const char *hostname); 1283void FAST_FUNC write_new_utmp(pid_t pid, int new_type, const char *tty_name, const char *username, const char *hostname);