minix/lib/posix/_fchmod.c
2006-04-18 11:26:04 +00:00

15 lines
205 B
C
Executable file

#include <lib.h>
#define fchmod _fchmod
#include <sys/stat.h>
PUBLIC int fchmod(fd, mode)
int fd;
_mnx_Mode_t mode;
{
message m;
m.m3_i1 = fd;
m.m3_i2 = mode;
return(_syscall(FS, FCHMOD, &m));
}