Skip to content

Commit

Permalink
kernel: format SyExit
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin committed Jan 5, 2025
1 parent 8147e67 commit b547fb4
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/system.c
Original file line number Diff line number Diff line change
Expand Up @@ -249,13 +249,12 @@ UInt SyWindow;
** If ret is 0 'SyExit' should signal to a calling process that all is ok.
** If ret is 1 'SyExit' should signal a failure to the calling process.
*/
void SyExit (
UInt ret )
void SyExit(UInt ret)
{
#ifdef USE_JULIA_GC
jl_atexit_hook(ret);
#endif
exit( (int)ret );
exit((int)ret);
}


Expand Down

0 comments on commit b547fb4

Please sign in to comment.