summaryrefslogtreecommitdiff
path: root/trymkffo.c
diff options
context:
space:
mode:
Diffstat (limited to 'trymkffo.c')
-rw-r--r--trymkffo.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/trymkffo.c b/trymkffo.c
new file mode 100644
index 0000000..0b119c6
--- /dev/null
+++ b/trymkffo.c
@@ -0,0 +1,7 @@
+#include <sys/types.h>
+#include <sys/stat.h>
+
+void main()
+{
+ mkfifo("temp-trymkffo",0);
+}