stdlib.h


Macros EXIT_FAILURE, EXIT_SUCCESS ANSI C

#define EXIT_FAILURE
#define EXIT_SUCCESS

Expresiones enteras que pueden ser usadas como el argumento para la función exit para retornar el estado de terminación sin o con éxito, respectivamente, al entorno local.

Ejemplo:

#define EXIT_FAILURE 1
#define EXIT_SUCCESS 0
DJGPP
#define EXIT_SUCCESS 0
#define EXIT_FAILURE 1
Borland
#define EXIT_SUCCESS   0
#define EXIT_FAILURE   -1
Dev-C++