summaryrefslogtreecommitdiff
path: root/lib/libc/unistd/faccessat.c
blob: 3087db1c468ed921693141a7437cd0b9e470cec4 (plain)
1
2
3
4
5
6
7
8
#include "asm/unistd_64.h" // for __NR_faccessat

#include <syscall.h> // for __syscall_4, syscall

int faccessat(int fd, const char *path, int amode, int flag)
{
	return syscall(faccessat, fd, path, amode, flag);
}