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

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