Remove unnecessary exit(0);

This was necessary to avoid warnings in a specific compiler but after
adding MZ_DECLARE_NORETURN, this is now unnecessary.
This commit is contained in:
Paulo Matos 2019-02-22 16:45:36 +01:00 committed by Matthew Flatt
parent ef8b31b527
commit 7a6536ab6d

View File

@ -4412,8 +4412,6 @@ scheme_raise_exn(int id, ...)
#else
call_error(buffer, alen, scheme_false);
#endif
exit(0); /* should not get here, but makes NORETURN clearly true */
}
#ifndef NO_SCHEME_EXNS