mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 08:08:38 +00:00
385fdfdfeb
svn path=/trunk/; revision=3674
30 lines
580 B
C
30 lines
580 B
C
/* $Id: chmod.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/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 */
|
|
|