POSIX+ says goodbye and leaves. It used to be fun, now it's just painful
[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
deleted file mode 100644 (file)
index 4eb0d02..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-/* $Id: mkfifo.c,v 1.1 2002/05/17 02:10:41 hyperion 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 */
-