mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-01-08 18:09:45 +01: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:
parent
32bd6c41bc
commit
eabb3941fd
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue