blob: ce2ed9dfa14da5121630e19dd0b14055801bb49e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <stdlib.h>
/** successful program termination **/
#define EXIT_SUCCESS (0)
/***
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 successfully.
***/
/*
STDC(1)
*/
|