shithub: riscv

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