]> git.sur5r.net Git - cc65/commitdiff
ValidSegName now defined in segnames.h
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 8 Feb 2003 09:54:47 +0000 (09:54 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 8 Feb 2003 09:54:47 +0000 (09:54 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@1941 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cc65/main.c
src/cc65/pragma.c

index 8b1dc23b1147a423d3bdf0772c0682951e84fc7e..19fb4db413c812b3d8473a40996fecfbdcb472bc 100644 (file)
@@ -45,7 +45,7 @@
 #include "debugflag.h"
 #include "fname.h"
 #include "print.h"
-#include "segdefs.h"
+#include "segnames.h"
 #include "target.h"
 #include "tgttrans.h"
 #include "version.h"
@@ -405,7 +405,7 @@ static void OptDebug (const char* Opt attribute ((unused)),
                      const char* Arg attribute ((unused)))
 /* Compiler debug mode */
 {
-    ++Debug; 
+    ++Debug;
 }
 
 
index 9a546efc7254d837ba693f827f2514779a665098..bf93bcd5b948633bf6ab54e28601abd749bd6fb3 100644 (file)
@@ -37,7 +37,7 @@
 #include <string.h>
 
 /* common */
-#include "segdefs.h"
+#include "segnames.h"
 #include "tgttrans.h"
 
 /* cc65 */