1 /* 2 * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org> 3 * 4 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. 5 */ 6 7 #include <features.h> 8 9 #ifdef __USE_SVID 10 11 #define GETXXKEY_FUNC fgetgrent 12 #define GETXXKEY_ENTTYPE struct group 13 #define GETXXKEY_ADD_PARAMS FILE *stream 14 #define GETXXKEY_ADD_VARIABLES stream 15 #define GETXXKEY_BUFLEN __UCLIBC_GRP_BUFFER_SIZE__ 16 #include "pwd_grp.c" 17 18 #endif 19