reactos/rossubsys/posix/lib/psxdll/sys/stat/mkfifo.c
Hermès Bélusca-Maïto 2ca9fcd3b0 Resuscitate POSIX subsystem from revision 21378.
svn path=/trunk/; revision=65460
2014-11-23 15:23:36 +00:00

25 lines
514 B
C

/* $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 */