summaryrefslogtreecommitdiff
path: root/distrib/utils/libhack/getnetgr.c
blob: e4839e203d255600851de76e713b47ecb1bd459d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*	$NetBSD: getnetgr.c,v 1.3 1999/03/13 19:08:44 sommerfe Exp $	*/

#include <netgroup.h>

/*
 * Just stub these out, so it looks like
 * we are not in any any netgroups.
 */

void
endnetgrent()
{
}

void
setnetgrent(ng)
	const char	*ng;
{
}

int
getnetgrent(host, user, domain)
	const char	**host;
	const char	**user;
	const char	**domain;
{
	return 0;
}

int
innetgr(grp, host, user, domain)
	const char	*grp, *host, *user, *domain;
{
	return 0;
}