Changes to build cleanly
authorsandeep <sandeep@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Fri, 28 Jan 2000 21:55:30 +0000 (21:55 +0000)
committersandeep <sandeep@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Fri, 28 Jan 2000 21:55:30 +0000 (21:55 +0000)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@34 4a8a32a2-be11-0410-ad9d-d568d2c75423

.version
src/SDCChasht.c
src/SDCCset.c
src/SDCCset.h

index 5ebe3e9491d03b9fdb1b3d824c6880b78998bde5..ccbccc3dc62631f22ff358ac418e52401ec770b4 100644 (file)
--- a/.version
+++ b/.version
@@ -1 +1 @@
-2.1.9Ga
+2.2.0
index eb6ed86edc15f11bed9712c0416612dde0fd0015..1bf0af52e34ef1095b56b919aea376bec69a295c 100644 (file)
     what you give them.   Help stamp out software-hoarding!  
 -------------------------------------------------------------------------*/
 
-#include "common.h"
+#include <stdio.h>
+#include <string.h>
+#include <limits.h>
+#include "SDCChasht.h"
+
 
 #define DEFAULT_HTAB_SIZE 128
 
index 049a3e3834f1254e56c096bf7dd85db56e50a00d..a4844a3779502a8fb4052da908fb5ec0c27cbb3c 100644 (file)
@@ -22,7 +22,9 @@
     what you give them.   Help stamp out software-hoarding!  
 -------------------------------------------------------------------------*/
 
-#include "common.h"
+#include <stdio.h>
+#include <assert.h>
+#include "SDCCset.h"
 
 /*-----------------------------------------------------------------*/
 /* newSet - will allocate & return a new set entry             */
index 26bed1c39c3bf189e69cf7f23c3b9f9f95a2cc85..f236b5708c9a110ec2e96c0fd4d54b717bf4370f 100644 (file)
@@ -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__);\