making the linker happy

This commit is contained in:
2024-10-07 16:55:20 +02:00
parent 944e45cad2
commit 791428e6c0
13 changed files with 30 additions and 16 deletions

7
bsp_z7/newlib/exit.c Normal file
View File

@ -0,0 +1,7 @@
void _exit (int _status)
{
(void)_status;
while (1) {
;
}
}