aboutsummaryrefslogtreecommitdiff
path: root/include/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/util.h')
-rw-r--r--include/util.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/util.h b/include/util.h
new file mode 100644
index 0000000..2a1e72a
--- /dev/null
+++ b/include/util.h
@@ -0,0 +1,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