summaryrefslogtreecommitdiff
path: root/src/stdlib/EXIT_FAILURE.c
blob: 4558c6605edcf442185c674b8a2a62fa7f7cafea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdlib.h>

/** unsuccessful program termination **/

#define EXIT_FAILURE                                                         (1)

/***
is used as the ARGUMENT(status) argument to FUNCTION(exit) or FUNCTION(_Exit),
or the return value from FUNCTION(main), to indicate that the program is
exiting unsuccessfully.
***/

/*
STDC(1)
*/