aboutsummaryrefslogtreecommitdiffstats
path: root/guts/chmod.c
blob: 2d5de918dd7f489aa648a648858138c13e5c4118 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* 
 * static int
 * wrap_chmod(const char *path, mode_t mode) {
 *	int rc = -1;
 */

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

/*	return rc;
 * }
 */