initgroups.c\misc\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/misc/initgroups.c
blob: 922a958142b0ad7b1f331f30725ecec29b91a309 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#define _GNU_SOURCE
#include <grp.h>
#include <limits.h>
int initgroups(const char *user, gid_t gid)
{
	gid_t groups[NGROUPS_MAX];
	int count = NGROUPS_MAX;
	if (getgrouplist(user, gid, groups, &count) < 0) return -1;
	return setgroups(count, groups);
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年10月05日 15:22:07 +0000

AltStyle によって変換されたページ (->オリジナル) /