]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/RISC-V_RV32_SiFive_HiFive1_GCC/freedom-metal/gloss/sys_chown.c
Base project to replace existing Freedom Studio project using latest Freedom Studio...
[freertos] / FreeRTOS / Demo / RISC-V_RV32_SiFive_HiFive1_GCC / freedom-metal / gloss / sys_chown.c
1 #include <sys/types.h>
2 #include <errno.h>
3
4 int
5 _chown(const char *path, uid_t owner, gid_t group)
6 {
7   errno = ENOSYS;
8   return -1;
9 }