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

int fchmod(int fd, mode_t mode)
{
	return syscall2(__NR_fchmod, fd, mode);
}