_Exit()

Terminates program normally.

  #include <stdlib.h>
  
  void _Exit(int status);    
Parameter

status

The exit error value.

Remarks

This function does not return to the caller. Instead, it passes a status value to the host operating system, like the function exit().

The effects on open stream buffers is implementation defined.

This facility is not specified in the ISO/IEC standards. It is an EWL extension of the standard libraries.