index
:
sonsi
Stupid and Obvious Non-recursive Scheme Interpreter
log msg
author
committer
range
faster_fetch
gc
gc_cyc
gc_imp
gc_sweep
master
new_ext
numeric_types
restructure
skip_removal
tail_recursion
about
summary
refs
log
tree
commit
diff
path:
root
/
consts.h
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
stat only
Diffstat
(limited to 'consts.h')
-rw-r--r--
consts.h
5
1 files changed, 3 insertions, 2 deletions
diff --git a/consts.h b/consts.h
index 5991317..e88cd31 100644
--- a/
consts.h
+++ b/
consts.h
@@ -10,9 +10,10 @@ enum ErrCode {
RUN_ERR_WRONG_NUM_OF_ARGS,
SYN_ERR_EMPTY_COMB,
READ_ERR_UNEXPECTED_RIGHT_BRACKET,
- RUN_ERR_WRONG_TYPE
+ RUN_ERR_WRONG_TYPE,
+ INT_ERR
};
-extern const char *SYN_ERR_MSG[];
+extern const char *ERR_MSG[];
#endif