xref: /titanic_41/usr/src/cmd/ssh/include/getgrouplist.h (revision 7c478bd95313f5f23a4c958a745db2134aa03244)
1 /* $Id: getgrouplist.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
2 
3 #ifndef	_GETGROUPLIST_H
4 #define	_GETGROUPLIST_H
5 
6 #pragma ident	"%Z%%M%	%I%	%E% SMI"
7 
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
11 
12 #include "config.h"
13 
14 #ifndef HAVE_GETGROUPLIST
15 
16 #include <grp.h>
17 
18 int getgrouplist(const char *, gid_t, gid_t *, int *);
19 
20 #endif
21 
22 #ifdef __cplusplus
23 }
24 #endif
25 
26 #endif /* _GETGROUPLIST_H */
27