#include <unistd.h> void __exit(int exit_code);
This is an internal library function which exits the program, returning
exit_code to the calling process. No additional processing is
done, and any atexit
functions are not called. Since hardware
interrupts are not unhooked, this can cause crashes after the program
exits. This function is normally called only by _exit
; do
not call it directly.
This function does not return.
not ANSI, POSIX
Go to the first, previous, next, last section, table of contents.