aboutsummaryrefslogtreecommitdiffstats
path: root/ports/darwin/guts/fgetpwent_r.c
blob: b93561643b3766ee32bacdbd57b02cb3b7219914 (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 fgetpwent_r(FILE *fp, struct passwd *pbuf, char *buf, size_t buflen, struct passwd **pbufp)
 *	int rc = -1;
 */

	rc = real_fgetpwent_r(fp, pbuf, buf, buflen, pbufp);

/*	return rc;
 * }
 */