aboutsummaryrefslogtreecommitdiffstats
path: root/ports/unix/guts/chmod.c
blob: a157335deb53597cd63c36775a0341b0b4752b93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* 
 * Copyright (c) 2008-2010 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * static int
 * wrap_chmod(const char *path, mode_t mode) {
 *	int rc = -1;
 */

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

/*	return rc;
 * }
 */