]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/RISC-V_RV32_SiFive_HiFive1_FreedomStudio/freedom-metal/gloss/sys_chown.c
302952eb1fd80dd3c6788e2cfa5281f90f3f0533
[freertos] / FreeRTOS / Demo / RISC-V_RV32_SiFive_HiFive1_FreedomStudio / 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 }