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