aboutsummaryrefslogtreecommitdiffstats
path: root/ports/unix/guts/mkfifo.c
blob: 81d9c0ca1ba39ce1c0c5356e0b76e77e35f9c46f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* 
 * Copyright (c) 2008-2010 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * SPDX-License-Identifier: LGPL-2.1-only
 *
 * static int
 * wrap_mkfifo(const char *path, mode_t mode) {
 *	int rc = -1;
 */

	rc = wrap_mkfifoat(AT_FDCWD, path, mode);

/*	return rc;
 * }
 */