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

	rc = wrap_mkdirat(AT_FDCWD, path, mode);

/*	return rc;
 * }
 */