Fix invalid-noreturn error

This commit is contained in:
2025-04-14 13:18:49 -04:00
parent 31df6146bf
commit 101c95d45f
3 changed files with 4 additions and 1 deletions

View File

@@ -8,7 +8,8 @@ void exit(int8_t status) {
:
: "a"(SYS_EXIT), "D"(status)
:
);
);
for(;;);
}
#define SYS_WRITE 1