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

	rc = wrap_fchownat(AT_FDCWD, path, owner, group, AT_SYMLINK_NOFOLLOW);

/*	return rc;
 * }
 */