Blame src/stat/nt32/fchmodat.c

cc741e
#include <sys/stat.h>
cc741e
#include <fcntl.h>
cc741e
#include "syscall.h"
cc741e
cc741e
int fchmodat(int fd, const char *path, mode_t mode, int flag)
cc741e
{
cc741e
	return syscall(SYS_fchmodat, fd, path, mode, flag);
cc741e
}