summaryrefslogtreecommitdiff
path: root/FreeRTOS/Demo/RISC-V_RV32_SiFive_HiFive1-RevB_FreedomStudio/freedom-metal/gloss/sys_fstatat.c
blob: f2f43bd9ebfe6bc8a2666f44912aaa9c61713f94 (plain)
1
2
3
4
5
6
7
8
9
#include <errno.h>
#include <sys/stat.h>

int
_fstatat(int dirfd, const char *file, struct stat *st, int flags)
{
  errno = ENOSYS;
  return -1;
}