_EXIT - terminate program execution.

(Slightly different from UNIX function)

Usage:

#include <stdio.h>
_exit( status );

Where:

int status;
is a status that will be returned to whatever called the current program.

Description:

"_exit" terminates program execution. Unlike on Unix, this version of "_exit" acts just like "exit". This is done since it is neither useful nor safe to leave a file unflushed and/or unclosed on non-unix systems.

See Also:

expl c lib exit

Copyright © 1996, Thinkage Ltd.