shithub: riscv

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