]> git.sur5r.net Git - cc65/commitdiff
Use gcc attribs
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 27 Jul 2000 20:42:23 +0000 (20:42 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 27 Jul 2000 20:42:23 +0000 (20:42 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@212 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ar65/error.h
src/ar65/make/gcc.mak

index be36010f58a9d80acf45cc4a51456380dbf4367a..1f6823269b6d2b48e1e24f51a70ea42b54559eda 100644 (file)
 
 
 
+/* common */
+#include "attrib.h"
+
+
+
 /*****************************************************************************/
 /*                                  Data                                    */
 /*****************************************************************************/
@@ -57,13 +62,13 @@ extern const char _MsgFail [];
 
 
 
-void Warning (const char* Format, ...);
+void Warning (const char* Format, ...) attribute((format(printf,1,2)));
 /* Print a warning message */
 
-void Error (const char* Format, ...);
+void Error (const char* Format, ...) attribute((format(printf,1,2)));
 /* Print an error message and die */
 
-void Internal (const char* Format, ...);
+void Internal (const char* Format, ...) attribute((format(printf,1,2)));
 /* Print an internal error message and die */
 
 #define CHECK(c)                                                       \
index 1f99cb2a0350d09af64cbffe90efdc89b2f44c79..2333108c2ea439653488ff1c9224c9f6285a8df5 100644 (file)
@@ -2,7 +2,7 @@
 # gcc Makefile for ar65
 #
 
-CFLAGS         = -g -O2 -Wall
+CFLAGS         = -g -O2 -Wall -I../common
 CC     = gcc
 LDFLAGS        =