]> git.sur5r.net Git - cc65/blobdiff - src/ld65/segments.c
Moved the segdefs module to ca65, since it was used only there and renamed it
[cc65] / src / ld65 / segments.c
index b67d0e2213e644911a0f01b025df26f5b6ad5729..a4e54317c30e81496e2d5c72790be92e98f31bde 100644 (file)
@@ -37,6 +37,7 @@
 #include <string.h>
 
 /* common */
+#include "addrsize.h"
 #include "alignment.h"
 #include "check.h"
 #include "coll.h"
@@ -44,7 +45,6 @@
 #include "fragdefs.h"
 #include "hashfunc.h"
 #include "print.h"
-#include "segdefs.h"
 #include "symdefs.h"
 #include "xmalloc.h"
 
@@ -105,7 +105,7 @@ static Segment* NewSegment (unsigned Name, unsigned char AddrSize)
     S->ReadOnly    = 0;
     S->Dumped      = 0;
     S->BankRef     = 0;
-                
+
     /* Insert the segment into the segment list and assign the segment id */
     S->Id = CollCount (&SegmentList);
     CollAppend (&SegmentList, S);