2 * Copyright 2004-2009, Axel Dörfler, axeld@pinc-software.de.
3 * Distributed under the terms of the MIT License.
10 #include <errno_private.h>
12 #include <syscall_utils.h>
16 mkfifo(const char *path
, mode_t mode
)
18 RETURN_AND_SET_ERRNO(_kern_create_fifo(-1, path
, mode
));
23 mkfifoat(int fd
, const char *path
, mode_t mode
)
25 RETURN_AND_SET_ERRNO(_kern_create_fifo(fd
, path
, mode
));