From: Alan Cox Date: Mon, 29 Dec 2014 22:51:01 +0000 (+0000) Subject: stat.h: mkfifo prototype X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=6b464d33ded5916378d4ce54ceb0069cf9cdaa5b;p=FUZIX.git stat.h: mkfifo prototype --- diff --git a/Library/include/sys/stat.h b/Library/include/sys/stat.h index 6edf730f..0dc4c4e4 100644 --- a/Library/include/sys/stat.h +++ b/Library/include/sys/stat.h @@ -56,4 +56,8 @@ struct stat { time_t st_ctime; /* file creation time */ }; +/* Weird location but for historical reasons */ + +extern int mkfifo(const char *pathname, mode_t mode); + #endif