From: sandeep Date: Fri, 28 Jan 2000 21:55:30 +0000 (+0000) Subject: Changes to build cleanly X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=b52e5a6f8234b5d83fb3af93af041faa41641b35;p=fw%2Fsdcc Changes to build cleanly git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@34 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/.version b/.version index 5ebe3e94..ccbccc3d 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -2.1.9Ga +2.2.0 diff --git a/src/SDCChasht.c b/src/SDCChasht.c index eb6ed86e..1bf0af52 100644 --- a/src/SDCChasht.c +++ b/src/SDCChasht.c @@ -22,7 +22,11 @@ what you give them. Help stamp out software-hoarding! -------------------------------------------------------------------------*/ -#include "common.h" +#include +#include +#include +#include "SDCChasht.h" + #define DEFAULT_HTAB_SIZE 128 diff --git a/src/SDCCset.c b/src/SDCCset.c index 049a3e38..a4844a37 100644 --- a/src/SDCCset.c +++ b/src/SDCCset.c @@ -22,7 +22,9 @@ what you give them. Help stamp out software-hoarding! -------------------------------------------------------------------------*/ -#include "common.h" +#include +#include +#include "SDCCset.h" /*-----------------------------------------------------------------*/ /* newSet - will allocate & return a new set entry */ diff --git a/src/SDCCset.h b/src/SDCCset.h index 26bed1c3..f236b570 100644 --- a/src/SDCCset.h +++ b/src/SDCCset.h @@ -38,7 +38,6 @@ #endif #ifndef ALLOC - #define ALLOC(x,sz) if (!(x = GC_malloc(sz))) \ { \ fprintf(stderr,"out of virtual memory %s , %d",__FILE__,__LINE__);\