aboutsummaryrefslogtreecommitdiffstats
path: root/guts/mkfifoat.c
blob: 26fcba3c7c7123a31b0a679e983fd1331d204b83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* 
 * Copyright (c) 2008-2010 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * static int
 * wrap_mkfifoat(int dirfd, const char *path, mode_t mode) {
 *	int rc = -1;
 */
 	dev_t unused = 0;

	rc = wrap___xmknodat(_STAT_VER, dirfd, path, (mode & 07777) | S_IFIFO, &unused);

/*	return rc;
 * }
 */