aboutsummaryrefslogtreecommitdiffstats
path: root/ports/darwin/guts/fgetgrent_r.c
blob: eec3d3ac069b31939990d7582dc4e356dd790e4b (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 fgetgrent_r(FILE *fp, struct group*gbuf, char *buf, size_t buflen, struct group **gbufp)
 *	int rc = -1;
 */

	rc = real_fgetgrent_r(fp, gbuf, buf, buflen, gbufp);

/*	return rc;
 * }
 */