removed unneeded #include "sdccconf.h"
authorborutr <borutr@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sun, 11 Aug 2002 18:12:58 +0000 (18:12 +0000)
committerborutr <borutr@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sun, 11 Aug 2002 18:12:58 +0000 (18:12 +0000)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2071 4a8a32a2-be11-0410-ad9d-d568d2c75423

ChangeLog
support/Util/NewAlloc.c

index 102877eb08dd90aa42831396b939b40ed94bf0f2..ae29dbbf979d7c090bbffd061a8d047ada7bcde6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2002-08-11  Borut Razem <borut.razem@siol.net>
+       * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
+
 2002-08-10  Borut Razem <borut.razem@siol.net>
        * src/SDCCmain.c (main):
        file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
        * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
 
        * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
-  
+
        * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
-  
+
        * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
        added return 0 statements after assert() to make compiler happy
-  
+
        * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
        added newline in the def file to keep MSC compiler satisfied
 
index d049260a99ca3e58546d67165a4541493211ffba..ff163999dbfa757ecdbf0449ec20c14fd357f032 100644 (file)
@@ -38,7 +38,6 @@ functions.
 #include <memory.h>
 #include <assert.h>
 #include "newalloc.h"
-#include "sdccconf.h"
 
 #if OPT_ENABLE_LIBGC
 #include <gc/gc.h>
@@ -272,4 +271,3 @@ void freeTrace(allocTrace *ptrace)
   ptrace->palloced = NULL;
   ptrace->max = 0;
 }
-