blob: 3b0bc2fa495d3b68d49948ab10ecf3fcb628f928 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#define EXIT_SUCCESS (0)
/** successful program termination **/
/***
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)
*/
|