]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/RISC-V_RV32_SiFive_HiFive1_GCC/freedom-metal/gloss/nanosleep.c
8be22104edf8e91fe40a9d8ca8d9e10cc99503de
[freertos] / FreeRTOS / Demo / RISC-V_RV32_SiFive_HiFive1_GCC / 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 }