aboutsummaryrefslogtreecommitdiffstats
path: root/ports/unix/guts/lchown.c
blob: 3a14e2fc0bc214c64795cc9506b0f617fe2bf464 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Copyright (c) 2008,2011 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * SPDX-License-Identifier: LGPL-2.1-only
 *
 * int lchown(const char *path, uid_t owner, gid_t group)
 *	int rc = -1;
 */

	rc = wrap_chown(path, owner, group);

/*	return rc;
 * }
 */