summaryrefslogtreecommitdiff
path: root/lib/libc/stat/fchmod.c
blob: 89ad637addc761aa93784835b11900c373de7583 (plain)
1
2
3
4
5
6
7
8
9
10
11



#include <sys/stat.h>  // for fchmod
#include <sys/types.h> // for mode_t
#include <syscall.h>   // for __syscall_2, syscall

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