2017-12-26 21:27:52 +01:00
|
|
|
#include <machine/syscall.h>
|
|
|
|
#include "internal_syscall.h"
|
|
|
|
|
|
|
|
/* Permissions of a file (by name) in a given directory. */
|
|
|
|
int _faccessat(int dirfd, const char *file, int mode, int flags)
|
|
|
|
{
|
2020-02-10 21:19:58 +01:00
|
|
|
return syscall_errno (SYS_faccessat, 4, dirfd, file, mode, flags, 0, 0);
|
2017-12-26 21:27:52 +01:00
|
|
|
}
|