Top index Wirbel home

::exit

exit(int) - terminate execution of programm

exit(int) terminates the execution of the current process immediately. The specified exitcode is returned to the parent process. An exit code of 0 usually signals a successful program execution. The exitcode must not be negative and not be greater than 255. This function does not return.