reactos/posix/lib/psxdll/sys/stat/mkfifo.c
KJK::Hyperion bce8535f50 Started implementing sys/stat.h calls
svn path=/trunk/; revision=2964
2002-05-17 02:10:41 +00:00

25 lines
519 B
C

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