1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-12 17:30:50 +00:00

Removed unneeded include files.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5630 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2012-04-01 15:48:11 +00:00
parent 4c56598dcb
commit 35e1184901

View File

@ -6,7 +6,7 @@
/* */ /* */
/* */ /* */
/* */ /* */
/* (C) 1998-2011, Ullrich von Bassewitz */ /* (C) 1998-2012, Ullrich von Bassewitz */
/* Roemerstrasse 52 */ /* Roemerstrasse 52 */
/* D-70794 Filderstadt */ /* D-70794 Filderstadt */
/* EMail: uz@cc65.org */ /* EMail: uz@cc65.org */
@ -34,10 +34,6 @@
#include <string.h> #include <string.h>
#include <errno.h>
#include <time.h>
#include <sys/types.h> /* EMX needs this */
#include <sys/stat.h>
/* common */ /* common */
#include "fname.h" #include "fname.h"
@ -208,7 +204,7 @@ void ObjReadDbgSyms (FILE* F, unsigned long Pos, ObjData* O)
/* Read the hll debug symbols */ /* Read the hll debug symbols */
DbgSymCount = ReadVar (F); DbgSymCount = ReadVar (F);
CollGrow (&O->HLLDbgSyms, DbgSymCount); CollGrow (&O->HLLDbgSyms, DbgSymCount);
for (I = 0; I < DbgSymCount; ++I) { for (I = 0; I < DbgSymCount; ++I) {
CollAppend (&O->HLLDbgSyms, ReadHLLDbgSym (F, O, I)); CollAppend (&O->HLLDbgSyms, ReadHLLDbgSym (F, O, I));
} }
} }