]> git.sur5r.net Git - cc65/blobdiff - src/cl65/error.c
Reverted part of change 4108 that prevented an optimization step to find
[cc65] / src / cl65 / error.c
index 87200b081f5841e92b1620f4258f878952c68e67..0372d50a08f035b05fafc3a7b9ff3a0ea435a382 100644 (file)
 #include <stdlib.h>
 #include <stdarg.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                                    */
 /*****************************************************************************/