1
0
mirror of https://github.com/cc65/cc65.git synced 2026-04-26 13:18:31 +00:00

Added enum for cc65 exit codes. replaced stdlib exit code names constants in libsrc with cc65 exit code named constants

This commit is contained in:
mc78
2019-11-12 13:08:33 +01:00
committed by Oliver Schmidt
parent 7bae9038cf
commit 3daecfb3dd
7 changed files with 15 additions and 7 deletions
+6
View File
@@ -36,6 +36,12 @@
#ifndef _CC65_H
#define _CC65_H
typedef enum {
CC65_EXIT_SUCCESS,
CC65_EXIT_FAILURE,
CC65_EXIT_AFAILED,
CC65_EXIT_ABORT
} cc65_exit_codes_t;
/*****************************************************************************/