summaryrefslogtreecommitdiffhomepage
path: root/src/stat/nt64/fchmodat.c
blob: 788b59a5ed0afd6d8cdb08971c2dab267d772e88 (plain)
1
2
3
4
5
6
7
8
#include <sys/stat.h>
#include <fcntl.h>
#include "syscall.h"

int fchmodat(int fd, const char *path, mode_t mode, int flag)
{
	return syscall(SYS_fchmodat, fd, path, mode, flag);
}