1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-01 18:43:33 +02:00

Mark VVV_exit implementation as VVV_NORETURN

For consistency. And in case it matters that much (which I don't really
think it does).
This commit is contained in:
Misa 2021-09-23 23:02:46 -07:00
parent 32bd6c41bc
commit eabb3941fd

View File

@ -708,7 +708,7 @@ static void cleanup(void)
FILESYSTEM_deinit();
}
void VVV_exit(const int exit_code)
VVV_NORETURN void VVV_exit(const int exit_code)
{
cleanup();
exit(exit_code);