Files
obsw/bsp_z7/newlib/exit.c
2024-10-07 16:55:20 +02:00

7 lines
66 B
C

void _exit (int _status)
{
(void)_status;
while (1) {
;
}
}