]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/RISC-V_RV32_SiFive_HiFive1_GCC/freedom-metal/gloss/sys_open.c
a59f627f00323402daa82b6a29f3f2ab06356502
[freertos] / FreeRTOS / Demo / RISC-V_RV32_SiFive_HiFive1_GCC / freedom-metal / gloss / sys_open.c
1 #include <errno.h>
2
3 int
4 _open(const char *name, int flags, int mode)
5 {
6   errno = ENOSYS;
7   return -1;
8 }