]> git.sur5r.net Git - cc65/commitdiff
Added printf format attributes
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 24 Sep 2000 18:04:17 +0000 (18:04 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 24 Sep 2000 18:04:17 +0000 (18:04 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@335 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ld65/scanner.h

index 2c0a5ac392675b48092692dccd8d33c9c9dfd630..02d53497804739beeb0a4b037aa411195812d3e5 100644 (file)
@@ -129,10 +129,10 @@ extern unsigned           CfgErrorCol;
 
 
 
-void CfgWarning (const char* Format, ...);
+void CfgWarning (const char* Format, ...) attribute((format(printf,1,2)));
 /* Print a warning message adding file name and line number of the config file */
 
-void CfgError (const char* Format, ...);
+void CfgError (const char* Format, ...) attribute((format(printf,1,2)));
 /* Print an error message adding file name and line number of the config file */
 
 void CfgNextTok (void);
@@ -196,3 +196,4 @@ void CfgCloseInput (void);
 
 
 
+