aboutsummaryrefslogtreecommitdiffstats
path: root/ports/unix/guts/mkdir.c
blob: 9f116e20c1ef542dd1bc412daf2475886cf7cf93 (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_mkdir(const char *path, mode_t mode) {
 *	int rc = -1;
 */

	rc = wrap_mkdirat(AT_FDCWD, path, mode);

/*	return rc;
 * }
 */