]> git.sur5r.net Git - cc65/blobdiff - src/cc65/asmline.h
Added the io module
[cc65] / src / cc65 / asmline.h
index bfec110bf2314032b77bf19cd03ef919d9e08517..5a5c00d32af5195f8f8e503f2e74688906c9c0f2 100644 (file)
@@ -40,6 +40,9 @@
 
 #include <stdarg.h>
 
+/* common */
+#include "attrib.h"
+
 
 
 /*****************************************************************************/
@@ -72,10 +75,10 @@ extern Line*                LastLine;       /* Pointer to last line */
 
 
 
-Line* NewCodeLine (const char* Format, va_list ap);
+Line* NewCodeLine (const char* Format, va_list ap) attribute((format(printf,1,0)));
 /* Create a new code line and return it */
 
-Line* NewCodeLineAfter (Line* LineBefore, const char* Format, va_list ap);
+Line* NewCodeLineAfter (Line* LineBefore, const char* Format, va_list ap) attribute((format(printf,2,0)));
 /* Create a new line, insert it after L and return it. */
 
 void FreeCodeLine (Line* L);