blob: 298845270c40e3ec49168d3881f08762ea2b520a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
* Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
*
* Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
*/
#define GETXXKEY_FUNC getgrgid
#define GETXXKEY_ENTTYPE struct group
#define GETXXKEY_ADD_PARAMS gid_t git
#define GETXXKEY_ADD_VARIABLES git
#define GETXXKEY_BUFLEN __UCLIBC_GRP_BUFFER_SIZE__
#include "pwd_grp.c"
|