mirror of https://github.com/dnomd343/ClearDNS
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
253 B
18 lines
253 B
#ifndef _EXIT_CODE_H_
|
|
#define _EXIT_CODE_H_
|
|
|
|
#ifndef TRUE
|
|
#define TRUE 1
|
|
#endif
|
|
|
|
#ifndef FALSE
|
|
#define FALSE 0
|
|
#endif
|
|
|
|
#define EXIT_NORMAL 0
|
|
#define EXIT_FILE_ERROR 1
|
|
#define EXIT_FORK_ERROR 2
|
|
#define EXIT_EXEC_ERROR 3
|
|
#define EXIT_WAIT_ERROR 4
|
|
|
|
#endif
|
|
|