quick_exit

From cppreference.com
< c‎ | program
Defined in header <stdlib.h>
_Noreturn void quick_exit( int exit_code );
(since C11)

Causes normal program termination to occur without completely cleaning the resources.

Functions passed to at_quick_exit are called in reverse order of their registration. After calling the registered functions, calls _Exit(exit_code)

Parameters

exit_code - exit status of the program

Return value

(none)