Apply the NORETURN attribute to functions that do not return (#1768)

* Apply the NORETURN attribute to functions that do not return

* Add NORETURN to debug.c functions
This commit is contained in:
Tharo
2024-12-22 23:24:47 +00:00
committed by GitHub
parent 16d8f4870d
commit 2a152a9676
7 changed files with 24 additions and 10 deletions
+2 -1
View File
@@ -1,6 +1,7 @@
#include "libc64/sleep.h"
#include "attributes.h"
void func_80183070(void) {
NORETURN void func_80183070(void) {
for (;;) {
msleep(1000);
}