shithub: riscv

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