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

30 lines
585 B
C

/* $Id: chmod.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/chmod.c
* PURPOSE: Change mode of a 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 chmod(const char *path, mode_t mode)
{
errno = ENOSYS;
return (-1);
}
int fchmod(int fildes, mode_t mode)
{
errno = ENOSYS;
return (-1);
}
/* EOF */