aboutsummaryrefslogtreecommitdiff
path: root/include/util.h
blob: 2a1e72a4168e7d1f54c58b23c9990bb7a4c0f372 (plain) (blame)
1
2
3
4
5
6
7
8
9
#ifndef CERC_UTIL_H
#define CERC_UTIL_H
enum exit_status {
	/* EXIT_SUCCESS = 0 (defined in stdlib.h) */
	EXIT_USER = 1,
	EXIT_ABNORMAL = 255,
};

#endif