shithub: riscv

ref: f16547d604a8fd723f81dc145b4f42532a7fbdc5
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;
}