/* $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 * UPDATE HISTORY: * 15/05/2002: Created */ #include #include #include int mkfifo(const char *path, mode_t mode) { errno = ENOSYS; return (-1); } /* EOF */