malloc: add glibc compat symbols
[uclibc-ng.git] / libc / pwd_grp / fgetpwent.c
blob6f65cf6727d47b29c4a11ea3069edeca4a4824b6
1 /*
2 * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
4 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
5 */
7 #include <features.h>
9 #ifdef __USE_SVID
11 #define GETXXKEY_FUNC fgetpwent
12 #define GETXXKEY_ENTTYPE struct passwd
13 #define GETXXKEY_ADD_PARAMS FILE *stream
14 #define GETXXKEY_ADD_VARIABLES stream
15 #define GETXXKEY_BUFLEN __UCLIBC_PWD_BUFFER_SIZE__
16 #include "pwd_grp.c"
18 #endif