]> begriffs open source - cmsis-freertos/blob - Demo/RISC-V_RV32_SiFive_HiFive1-RevB_FreedomStudio/freedom-metal/gloss/sys_fstat.c
Update README.md - branch main is now the base branch
[cmsis-freertos] / Demo / RISC-V_RV32_SiFive_HiFive1-RevB_FreedomStudio / freedom-metal / gloss / sys_fstat.c
1 #include <errno.h>
2 #include <sys/stat.h>
3
4 int _fstat(int file, struct stat *st) {
5     errno = -ENOSYS;
6     return -1;
7 }