]> git.ipfire.org Git - thirdparty/glibc.git/blame - nscd/getgrnam_r.c
elf: Use nocancel pread64() instead of lseek()+read()
[thirdparty/glibc.git] / nscd / getgrnam_r.c
CommitLineData
04277e02 1/* Copyright (C) 1996-2019 Free Software Foundation, Inc.
d67281a7
UD
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
4
43bc8ac6 5 This program is free software; you can redistribute it and/or modify
2e2efe65
RM
6 it under the terms of the GNU General Public License as published
7 by the Free Software Foundation; version 2 of the License, or
8 (at your option) any later version.
d67281a7 9
43bc8ac6 10 This program is distributed in the hope that it will be useful,
d67281a7 11 but WITHOUT ANY WARRANTY; without even the implied warranty of
43bc8ac6
UD
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
d67281a7 14
43bc8ac6 15 You should have received a copy of the GNU General Public License
5a82c748 16 along with this program; if not, see <https://www.gnu.org/licenses/>. */
d67281a7
UD
17
18#include <grp.h>
19
ced8f893 20#include <grp-merge.h>
d67281a7
UD
21
22#define LOOKUP_TYPE struct group
23#define FUNCTION_NAME getgrnam
24#define DATABASE_NAME group
25#define ADD_PARAMS const char *name
26#define ADD_VARIABLES name
27
ced8f893
SG
28#define DEEPCOPY_FN __copy_grp
29#define MERGE_FN __merge_grp
30
f04e2132
RM
31/* We are nscd, so we don't want to be talking to ourselves. */
32#undef USE_NSCD
33
d67281a7 34#include <nss/getXXbyYY_r.c>