summaryrefslogtreecommitdiff
path: root/src/stat/fchmod.c
blob: f9b99366e4790b01b1f94f460e657fc9439cd9cc (plain) (blame)
1
2
3
4
5
6
7
#include <sys/stat.h>
#include "syscall.h"

int fchmod(int fd, mode_t mode)
{
	return syscall(SYS_fchmod, fd, mode);
}