minix/lib/libc/sys-minix/fchmod.c
Lionel Sambuc 6c61cd5665 Message type for VFS_FCHMOD
Change-Id: I933e5b5a214aa9e7ddb6546b459ef40688e8ca04
2014-07-28 17:05:34 +02:00

17 lines
296 B
C

#include <sys/cdefs.h>
#include "namespace.h"
#include <lib.h>
#include <string.h>
#include <sys/stat.h>
int fchmod(int fd, mode_t mode)
{
message m;
memset(&m, 0, sizeof(m));
m.m_lc_vfs_fchmod.fd = fd;
m.m_lc_vfs_fchmod.mode = mode;
return(_syscall(VFS_PROC_NR, VFS_FCHMOD, &m));
}