]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/RISC-V_RV32_SiFive_HiFive1-RevB_FreedomStudio/freedom-metal/gloss/nanosleep.c
Rename RISC-V_RV32_SiFive_HiFive1-FreedomStudio directory to RISC-V_RV32_SiFive_HiFiv...
[freertos] / FreeRTOS / Demo / RISC-V_RV32_SiFive_HiFive1-RevB_FreedomStudio / freedom-metal / gloss / nanosleep.c
1 #include <errno.h>
2 #include <sys/time.h>
3
4 int
5 nanosleep(const struct timespec *rqtp, struct timespec *rmtp)
6 {
7   errno = ENOSYS;
8   return -1;
9 }