1*433d6423SLionel Sambuc #include <sys/cdefs.h> 2*433d6423SLionel Sambuc #include "namespace.h" 3*433d6423SLionel Sambuc #include <lib.h> 4*433d6423SLionel Sambuc 5*433d6423SLionel Sambuc #include <sys/stat.h> 6*433d6423SLionel Sambuc #include <unistd.h> 7*433d6423SLionel Sambuc mkfifo(const char * name,mode_t mode)8*433d6423SLionel Sambucint mkfifo(const char *name, mode_t mode) 9*433d6423SLionel Sambuc { 10*433d6423SLionel Sambuc return mknod(name, mode | S_IFIFO, (dev_t) 0); 11*433d6423SLionel Sambuc } 12