summaryrefslogtreecommitdiff
path: root/libc/pwd_grp/fgetgrent.c
blob: 6a45799bc3b1307eccaf124db7858576510d9def (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
 *
 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
 */

#include <features.h>

#ifdef __USE_SVID

#define GETXXKEY_FUNC		fgetgrent
#define GETXXKEY_ENTTYPE	struct group
#define GETXXKEY_ADD_PARAMS	FILE *stream
#define GETXXKEY_ADD_VARIABLES	stream
#define GETXXKEY_BUFLEN		__UCLIBC_GRP_BUFFER_SIZE__
#include "pwd_grp.c"

#endif