Include file path changes

git-svn-id: svn://svn.cc65.org/cc65/trunk@243 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2000-07-30 21:27:37 +00:00
parent a01a9429ba
commit b01c0adf49
4 changed files with 41 additions and 33 deletions

View File

@@ -36,12 +36,14 @@
#include <stdlib.h>
#include <string.h>
#include "../common/exprdefs.h"
#include "../common/hashstr.h"
#include "../common/segdefs.h"
#include "../common/symdefs.h"
#include "../common/xmalloc.h"
/* common */
#include "exprdefs.h"
#include "hashstr.h"
#include "segdefs.h"
#include "symdefs.h"
#include "xmalloc.h"
/* ld65 */
#include "error.h"
#include "expr.h"
#include "fileio.h"
@@ -303,17 +305,17 @@ Section* ReadSection (FILE* F, ObjData* O)
case FRAG_SEXPR24:
case FRAG_SEXPR32:
Frag = NewFragment (Type & FRAG_TYPEMASK, Type & FRAG_BYTEMASK, Sec);
break;
break;
case FRAG_FILL:
/* Will allocate memory, but we don't care... */
Frag = NewFragment (FRAG_FILL, Read16 (F), Sec);
break;
/* Will allocate memory, but we don't care... */
Frag = NewFragment (FRAG_FILL, Read16 (F), Sec);
break;
default:
Error ("Unknown fragment type in module `%s', segment `%s': %02X",
O->Name, S->Name, Type);
/* NOTREACHED */
Error ("Unknown fragment type in module `%s', segment `%s': %02X",
O->Name, S->Name, Type);
/* NOTREACHED */
return 0;
}