]> begriffs open source - freertos/blob - FreeRTOS/Demo/RISC-V_RV32_SiFive_HiFive1_FreedomStudio/freedom-metal/gloss/sys_link.c
Update RISCC-V-RV32-SiFive_HiFive1_FreedomStudio project to latest tools and metal...
[freertos] / FreeRTOS / Demo / RISC-V_RV32_SiFive_HiFive1_FreedomStudio / freedom-metal / gloss / sys_link.c
1 #include <errno.h>
2
3 int _link(const char *old_name, const char *new_name)
4 {
5   errno = ENOSYS;
6   return -1;
7 }