6c61cd5665
Change-Id: I933e5b5a214aa9e7ddb6546b459ef40688e8ca04
16 lines
296 B
C
16 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));
|
|
}
|