Table of Contents
Previous Section Next Section

abort

#include <stdlib.h>void abort(void);

The abort( ) function causes immediate abnormal termination of a program. Generally, no files are flushed. In environments that support it, abort( ) will return an implementation-defined value to the calling process (usually the operating system) indicating failure.

Related functions are exit( ) and atexit( ).


Table of Contents
Previous Section Next Section