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

	rc = real_getgrent_r(gbuf, buf, buflen, gbufp);

/*	return rc;
 * }
 */