faccessat.c 170 字节
Newer Older
R
Rich Felker 已提交
1 2 3 4 5
#include <unistd.h>
#include "syscall.h"

int faccessat(int fd, const char *filename, int amode, int flag)
{
6
	return syscall(SYS_faccessat, fd, filename, amode, flag);
R
Rich Felker 已提交
7
}