Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sys_faccessat.c « riscv « libgloss - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6418ef4235ded01e474b5354a74032e12e654dfd (plain)
1
2
3
4
5
6
7
8
#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, 4, dirfd, file, mode, flags, 0, 0);
}