aboutsummaryrefslogtreecommitdiffstats
path: root/guts/getpwent_r.c
blob: 2bf1db217de6c060ab73b0fa481a66b326003b89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* 
 * static int
 * wrap_getpwent_r(struct passwd *pwbuf, char *buf, size_t buflen, struct passwd **pwbufp) {
 *	int rc = -1;
 */

	/* note that we don't wrap fgetpwent_r, since there's no path
	 * references in it.
	 */
	return fgetpwent_r(pseudo_pwd, pwbuf, buf, buflen, pwbufp);

/*	return rc;
 * }
 */