aboutsummaryrefslogtreecommitdiffstats
path: root/ports/unix/guts/mkfifoat.c
blob: 3497f3773b8ec6cfb860dc74204d0593d41ac29f (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_mkfifoat(int dirfd, const char *path, mode_t mode) {
 *	int rc = -1;
 */

	rc = wrap_mknodat(dirfd, path, (mode & 07777) | S_IFIFO, (dev_t) 0);

/*	return rc;
 * }
 */