summaryrefslogtreecommitdiff
path: root/lib/libc/stat/fchmod.c
blob: 22593fd61e9542705bd9dd6c5ef4eb1a69e14c5e (plain)
1
2
3
4
5
6
7
#include <sys/stat.h>
#include <syscall.h>

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