aboutsummaryrefslogtreecommitdiffstats
path: root/ports/darwin/guts/getpwent_r.c
blob: da0f797ba88495853daee515c274757552aaa5e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Copyright (c) 2011 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * SPDX-License-Identifier: LGPL-2.1-only
 *
 * int getpwent_r(struct passwd *pwbuf, char *buf, size_t buflen, struct passwd **pwbufp)
 *	int rc = -1;
 */

	rc = real_getpwent_r(pwbuf, buf, buflen, pwbufp);

/*	return rc;
 * }
 */