2011-02-17 18:11:09 +01:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include "namespace.h"
|
|
|
|
#include <lib.h>
|
|
|
|
|
2013-11-04 22:48:08 +01:00
|
|
|
#include <string.h>
|
2011-02-17 18:11:09 +01:00
|
|
|
#include <sys/stat.h>
|
|
|
|
|
2012-03-25 20:25:53 +02:00
|
|
|
int fchmod(int fd, mode_t mode)
|
2011-02-17 18:11:09 +01:00
|
|
|
{
|
|
|
|
message m;
|
|
|
|
|
2013-11-04 22:48:08 +01:00
|
|
|
memset(&m, 0, sizeof(m));
|
2014-05-12 17:05:32 +02:00
|
|
|
m.m_lc_vfs_fchmod.fd = fd;
|
|
|
|
m.m_lc_vfs_fchmod.mode = mode;
|
2013-11-04 22:48:08 +01:00
|
|
|
return(_syscall(VFS_PROC_NR, VFS_FCHMOD, &m));
|
2011-02-17 18:11:09 +01:00
|
|
|
}
|