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

int
_open(const char *name, int flags, int mode)
{
  errno = ENOSYS;
  return -1;
}