mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-01-09 10:29: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();
|
FILESYSTEM_deinit();
|
||||||
}
|
}
|
||||||
|
|
||||||
void VVV_exit(const int exit_code)
|
VVV_NORETURN void VVV_exit(const int exit_code)
|
||||||
{
|
{
|
||||||
cleanup();
|
cleanup();
|
||||||
exit(exit_code);
|
exit(exit_code);
|
||||||
|
|
Loading…
Reference in a new issue