summaryrefslogtreecommitdiff
path: root/src/unistd/access.c
blob: 2c10e58cc94bb9f254b2885251e3f02a9f6326ad (plain) (blame)
1
2
3
4
5
6
7
#include <unistd.h>
#include "syscall.h"

int access(const char *filename, int amode)
{
	return syscall2(__NR_access, (long)filename, amode);
}