mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-12-25 19:32:09 +00:00
15 lines
194 B
C
15 lines
194 B
C
|
#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
|