shithub: riscv

ref: 4d3367d11f03639da12829df103c4b6c5ecc78ac
dir: /sys/src/ape/lib/ap/posix/mkfifo.c/

View raw version
#include	<sys/types.h>
#include	<sys/stat.h>
#include	<errno.h>

int
mkfifo(char *path, mode_t mode)
{
#pragma ref path
#pragma ref mode
	errno = 0;
	return -1;
}