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