]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/RISC-V_RV32_SiFive_HiFive1_FreedomStudio/freedom-metal/gloss/sys_chmod.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_chmod.c
1 #include <errno.h>
2 #include <sys/types.h>
3
4 int
5 _chmod(const char *path, mode_t mode)
6 {
7   errno = ENOSYS;
8   return -1;
9 }