aboutsummaryrefslogtreecommitdiffstats
path: root/ports/linux/guts/getgrent_r.c
blob: b04373d17837c9ea701bd442853b26c45f30be9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* 
 * Copyright (c) 2010-2011 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * static int
 * wrap_getgrent_r(struct group *gbuf, char *buf, size_t buflen, struct group **gbufp) {
 *	int rc = -1;
 */

	/* note that we don't wrap fgetgrent_r, since there's no path
	 * references in it.
	 */
	if (!pseudo_grp) {
		errno = ENOENT;
		return -1;
	}
	rc = fgetgrent_r(pseudo_grp, gbuf, buf, buflen, gbufp);

/*	return rc;
 * }
 */