Plan 9 from Bell Labs’s /usr/web/sources/patch/ape-erik/mkfifo.c
#include <sys/types.h> #include <sys/stat.h> #include <errno.h> int mkfifo(char *path, mode_t mode) { USED(path, mode); errno = 0; return -1; }