Fix last "noreturn" warnings
This commit is contained in:
parent
b6a4aa3ecc
commit
62757b28f4
4 changed files with 11 additions and 7 deletions
|
@ -44,8 +44,10 @@ void trap_Print( const char *string ) {
|
|||
syscall( UI_PRINT, string );
|
||||
}
|
||||
|
||||
void trap_Error( const char *string ) {
|
||||
syscall( UI_ERROR, string );
|
||||
void trap_Error(const char *string)
|
||||
{
|
||||
syscall(UI_ERROR, string);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
int trap_Milliseconds( void ) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue