1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-05 06:28:57 +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:
cuz 2000-07-27 06:37:53 +00:00
parent 62abe29353
commit 1c715a5ee3
2 changed files with 2 additions and 0 deletions

View File

@ -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",

View File

@ -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,