ref: ed15b6e52c8fdeaf992e1608b5f26d15b9323e90
dir: /sys/src/ape/lib/ap/posix/mkfifo.c/
#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;
}