* spu/exit.c (_exit): Finish with an infinite loop to eliminate a

warning about this noreturn function returning.
This commit is contained in:
Ben Elliston
2007-01-09 00:54:00 +00:00
parent 8e0e8f40fb
commit 5a308d4f2d
2 changed files with 8 additions and 0 deletions

View File

@ -42,4 +42,7 @@ void _exit(int rc)
"1:\n"
" stop 0x2000\n"
: : "r" (rc) );
for (;;)
;
}