]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/RISC-V_RV32_SiFive_HiFive1_FreedomStudio/freedom-metal/gloss/sys_link.c
40d5912bc68a4fa92a2b97adb40e4689b18029f3
[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 }