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

int
_fork()
{
  errno = ENOSYS;
  return -1;
}