shithub: riscv

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