summaryrefslogtreecommitdiff
path: root/FreeRTOS/Demo/RISC-V_RV32_SiFive_HiFive1-RevB_FreedomStudio/freedom-metal/gloss/sys_chmod.c
blob: 67412bf7df0db84a157e47dbe8647df500d7c202 (plain)
1
2
3
4
5
6
7
8
9
#include <errno.h>
#include <sys/types.h>

int
_chmod(const char *path, mode_t mode)
{
  errno = ENOSYS;
  return -1;
}