shithub: riscv

ref: dce28e58e492e5b4448451ddcbe948d9b104d859
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 *, mode_t)
{
#pragma ref path
#pragma ref mode
	errno = 0;
	return -1;
}