]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/RISC-V_RV32_SiFive_HiFive1_GCC/freedom-metal/gloss/sys_close.c
Add nano-specs linker option to HiFive1_GCC demo.
[freertos] / FreeRTOS / Demo / RISC-V_RV32_SiFive_HiFive1_GCC / freedom-metal / gloss / sys_close.c
1 #include <errno.h>
2
3 int
4 _close(int file)
5 {
6   errno = ENOSYS;
7   return -1;
8 }