blob: ef9e60116bf6a84ef2ad058b33c0554f9ce46c15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _BSD_GETGROUPLIST_H
#define _BSD_GETGROUPLIST_H
#include "config.h"
#ifndef HAVE_GETGROUPLIST
#include <grp.h>
int getgrouplist(const char *, gid_t, gid_t *, int *);
#endif
#endif
|