blob: 336462553209186e8b4312aee5dce90230bf9839 (
plain)
1
2
3
4
5
6
7
8
9
|
// SPDX-License-Identifier: GPL-3.0-or-later
#ifndef NETDATA_GETGROUPLIST_H
#define NETDATA_GETGROUPLIST_H
#include <unistd.h>
int os_getgrouplist(const char *username, gid_t gid, gid_t *supplementary_groups, int *ngroups);
#endif //NETDATA_GETGROUPLIST_H
|