summaryrefslogtreecommitdiff
path: root/FreeRTOS/Demo/RISC-V_RV32_SiFive_HiFive1_FreedomStudio/freedom-metal/gloss/sys_faccessat.c
blob: 873d52c2e99d216df832fcb0bd634f96dc4694e6 (plain)
1
2
3
4
5
6
7
8
#include <errno.h>

int
_faccessat(int dirfd, const char *file, int mode, int flags)
{
  errno = ENOSYS;
  return -1;
}