Posts Tagged ‘exit’
assert_perror – test errnum and abort
USAGE
#define _GNU_SOURCE
#include <assert.h>
void assert_perror(int errnum);
DESCRIPTION
If the macro NDEBUG was defined at the moment was last
[...]
Categories: A
abort – cause abnormal program termination
USAGE
#include <stdlib.h>
void abort(void);
DESCRIPTION
The abort() function causes abnormal program termination unless the
signal SIGABRT is caught and the signal handler [...]
Categories: A
