Fix last "noreturn" warnings

This commit is contained in:
Thilo Schulz 2011-07-27 00:02:45 +00:00
parent b6a4aa3ecc
commit 62757b28f4
4 changed files with 11 additions and 7 deletions

View file

@ -45,8 +45,10 @@ void trap_Printf( const char *fmt ) {
syscall( G_PRINT, fmt );
}
void trap_Error( const char *fmt ) {
syscall( G_ERROR, fmt );
void trap_Error(const char *fmt)
{
syscall(G_ERROR, fmt);
exit(1);
}
int trap_Milliseconds( void ) {