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

	rc = wrap_openat(AT_FDCWD, path, O_CREAT|O_WRONLY|O_TRUNC|O_LARGEFILE, mode);

/*	return rc;
 * }
 */