summaryrefslogtreecommitdiff
path: root/FreeRTOS/Demo/RISC-V_RV32_SiFive_HiFive1_FreedomStudio/freedom-metal/gloss/sys_utime.c
blob: 33d557aa7f48a50fa908d25ed2ec83e8936ae904 (plain)
1
2
3
4
5
6
7
8
9
#include <errno.h>
struct utimbuf;

int
_utime(const char *path, const struct utimbuf *times)
{
  errno = ENOSYS;
  return -1;
}