blob: 14be78cf008ca7ecb063b2d7fced0aab4a2b7967 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef _GRP_H
#include <grp/grp.h>
/* Now define the internal interfaces. */
extern int __getgrent_r __P ((struct group *__resultbuf, char *buffer,
size_t __buflen, struct group **__result));
extern int __fgetgrent_r __P ((FILE * __stream, struct group *__resultbuf,
char *buffer, size_t __buflen,
struct group **__result));
#endif
|