aboutsummaryrefslogtreecommitdiffstats
path: root/ports/linux/guts/lchmod.c
blob: da330a7c267bb65035e11e8eca03551d46057a7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* 
 * Copyright (c) 2021 Linux Foundation
 *
 * SPDX-License-Identifier: LGPL-2.1-only
 *
 * static int
 * wrap_lchmod(const char *path, mode_t mode) {
 */

	rc = wrap_fchmodat(AT_FDCWD, path, mode, AT_SYMLINK_NOFOLLOW);

/*	return rc;
 * }
 */