mirror of
https://github.com/cc65/cc65.git
synced 2024-12-23 04:30:10 +00:00
Added ERR_EXPECTED_EOF
git-svn-id: svn://svn.cc65.org/cc65/trunk@201 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
62abe29353
commit
1c715a5ee3
@ -173,6 +173,7 @@ void ErrorMsg (const FilePos* Pos, unsigned ErrNum, va_list ap)
|
||||
"Exported symbol `%s' is undefined",
|
||||
"Exported values must be constant",
|
||||
".IF nesting too deep",
|
||||
"Unexpected end of file",
|
||||
"Unexpected end of line",
|
||||
"Unexpected `%s'",
|
||||
"Division by zero",
|
||||
|
@ -106,6 +106,7 @@ enum Errors {
|
||||
ERR_EXPORT_UNDEFINED,
|
||||
ERR_EXPORT_MUST_BE_CONST,
|
||||
ERR_IF_NESTING,
|
||||
ERR_UNEXPECTED_EOF,
|
||||
ERR_UNEXPECTED_EOL,
|
||||
ERR_UNEXPECTED,
|
||||
ERR_DIV_BY_ZERO,
|
||||
|
Loading…
Reference in New Issue
Block a user