mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
24 lines
518 B
C
24 lines
518 B
C
|
/* $Id: mknod.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/mknod.c
|
||
|
* PURPOSE: Make a directory, a special or regular file
|
||
|
* PROGRAMMER: KJK::Hyperion <noog@libero.it>
|
||
|
* UPDATE HISTORY:
|
||
|
* 15/05/2002: Created
|
||
|
*/
|
||
|
|
||
|
#include <sys/stat.h>
|
||
|
#include <errno.h>
|
||
|
|
||
|
int mknod(const char *path, mode_t mode, dev_t dev)
|
||
|
{
|
||
|
errno = ENOSYS;
|
||
|
return (-1);
|
||
|
}
|
||
|
|
||
|
/* EOF */
|
||
|
|