]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/RISC-V_RV32_SiFive_HiFive1_GCC/freedom-metal/gloss/sys_utime.c
33d557aa7f48a50fa908d25ed2ec83e8936ae904
[freertos] / FreeRTOS / Demo / RISC-V_RV32_SiFive_HiFive1_GCC / freedom-metal / gloss / sys_utime.c
1 #include <errno.h>
2 struct utimbuf;
3
4 int
5 _utime(const char *path, const struct utimbuf *times)
6 {
7   errno = ENOSYS;
8   return -1;
9 }