revert of mass delete of the posix subsystem. perhaps there is hope for it yet.
[reactos.git] / posix / lib / psxdll / sys / stat / mkfifo.c
diff --git a/posix/lib/psxdll/sys/stat/mkfifo.c b/posix/lib/psxdll/sys/stat/mkfifo.c
new file mode 100644 (file)
index 0000000..5960ebe
--- /dev/null
@@ -0,0 +1,24 @@
+/* $Id: mkfifo.c,v 1.3 2002/10/29 04:45:44 rex Exp $
+ */
+/*
+ * COPYRIGHT:   See COPYING in the top level directory
+ * PROJECT:     ReactOS POSIX+ Subsystem
+ * FILE:        subsys/psx/lib/psxdll/sys/stat/mkfifo.c
+ * PURPOSE:     Make a FIFO special file
+ * PROGRAMMER:  KJK::Hyperion <noog@libero.it>
+ * UPDATE HISTORY:
+ *              15/05/2002: Created
+ */
+
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <errno.h>
+
+int mkfifo(const char *path, mode_t mode)
+{
+ errno = ENOSYS;
+ return (-1);
+}
+
+/* EOF */
+