fix fesetround - it was writing to status word instead of control word
[musl] / src / stat / mkfifo.c
1 #include <sys/stat.h>
2
3 int mkfifo(const char *path, mode_t mode)
4 {
5         return mknod(path, mode | S_IFIFO, 0);
6 }