mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-19 21:09:22 +08:00
9 lines
262 B
C
9 lines
262 B
C
#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)
|
|
{
|
|
return syscall_errno (SYS_faccessat, dirfd, file, mode, flags, 0, 0);
|
|
}
|