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

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