X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Fcl65%2Ferror.c;h=0372d50a08f035b05fafc3a7b9ff3a0ea435a382;hb=6b3e515573e5165aefaff9e59ac42f3567e6ab25;hp=54cdc2b22033114e64b8016fd53e682918693ceb;hpb=c2b19b5e007b5ce95c370cb74b07b31e54b156bd;p=cc65 diff --git a/src/cl65/error.c b/src/cl65/error.c index 54cdc2b22..0372d50a0 100644 --- a/src/cl65/error.c +++ b/src/cl65/error.c @@ -37,29 +37,15 @@ #include #include -#include "../common/cmdline.h" - +/* common */ +#include "cmdline.h" + +/* cl65 */ #include "global.h" #include "error.h" -/*****************************************************************************/ -/* Data */ -/*****************************************************************************/ - - - -/* Messages for internal compiler errors */ -const char _MsgCheckFailed [] = - "Check failed: `%s' (= %d), file `%s', line %u\n"; -const char _MsgPrecondition [] = - "Precondition violated: `%s' (= %d), file `%s', line %u\n"; -const char _MsgFail [] = - "%s, file `%s', line %u\n"; - - - /*****************************************************************************/ /* Code */ /*****************************************************************************/