1 /* Public domain. */
2 
3 #include <sys/types.h>
4 #include <sys/stat.h>
5 
main()6 void main()
7 {
8   mkfifo("temp-trymkffo",0);
9 }
10