mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 21:38:43 +00:00
bce8535f50
svn path=/trunk/; revision=2964
23 lines
523 B
C
23 lines
523 B
C
/* $Id: mknod.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/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 */
|
|
|