]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/RISC-V_RV32_SiFive_HiFive1_FreedomStudio/freedom-metal/gloss/sys_ftime.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_ftime.c
1 #include <errno.h>
2 #include <sys/timeb.h>
3
4 int
5 _ftime(struct timeb *tp)
6 {
7   errno = ENOSYS;
8   return -1;
9 }