]> git.sur5r.net Git - cc65/commitdiff
Comment changes
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 7 Sep 2000 21:32:54 +0000 (21:32 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 7 Sep 2000 21:32:54 +0000 (21:32 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@321 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ld65/scanner.c

index 4938159b384b5232989620f35e55eabae32f6dbe..56870f11e5abd0e237a701a1d3ce0bcac4860a93 100644 (file)
 #include <errno.h>
 #include <ctype.h>
 
-#include "../common/xsprintf.h"
+/* common */
+#include "xsprintf.h"
 
+/* ld65 */
 #include "global.h"
 #include "error.h"
 #include "scanner.h"
@@ -75,7 +77,7 @@ static FILE*                  InputFile       = 0;
 
 
 /*****************************************************************************/
-/*                             Error handling                               */
+/*                             Error handling                               */
 /*****************************************************************************/
 
 
@@ -84,7 +86,7 @@ void CfgWarning (const char* Format, ...)
 /* Print a warning message adding file name and line number of the config file */
 {
     char Buf [512];
-    va_list ap;        
+    va_list ap;
 
     va_start (ap, Format);
     xvsprintf (Buf, sizeof (Buf), Format, ap);