plan9fox/sys/src/ape/lib/ap/posix/mkfifo.c
Ori Bernstein d4bc9052be Turn on warnings when building libap.
For ape, we never enabled warnings in cflags.
Turning it on brings up a lot of warnings. Most are noise,
but a few caught unused variables and trunctaions of pointers.
to smaller integers (int, long).

A few warnings remain.
2019-06-21 10:00:58 -07:00

13 lines
154 B
C

#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
int
mkfifo(char *, mode_t)
{
#pragma ref path
#pragma ref mode
errno = 0;
return -1;
}