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

void
_exit(int exit_status)
{
  metal_shutdown(exit_status);
  while (1);
}