summaryrefslogtreecommitdiff
path: root/FreeRTOS/Demo/RISC-V_RV32_SiFive_HiFive1_FreedomStudio/freedom-metal/gloss/sys_wait.c
blob: 9d459f14ce6dfcbb58cfe76b99f7f0fb31316edf (plain)
1
2
3
4
5
6
7
#include <errno.h>

int _wait(int *status)
{
  errno = ENOSYS;
  return -1;
}