gdb complains about:
authorjohanknol <johanknol@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sun, 4 Feb 2001 17:17:22 +0000 (17:17 +0000)
committerjohanknol <johanknol@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sun, 4 Feb 2001 17:17:22 +0000 (17:17 +0000)
// this is a comment \
// and this too.

git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@578 4a8a32a2-be11-0410-ad9d-d568d2c75423

src/SDCCglobl.h

index 0b78524fe678d68d1a99423fedb6156015be4ffd..d5547fdf135f82ee0430cac0e7b0f6db1e1409b6 100644 (file)
@@ -88,18 +88,21 @@ typedef int bool;
     type *type##FreeStack [size]  ; \
     int   type##StackPtr = 0      ;
 
-//#define  ALLOC(x,sz) if (!(x = calloc(1, sz)))      \
-//         {                                          \
-//            werror(E_OUT_OF_MEM,__FILE__,(long) sz);\
-//            exit (1);                               \
-//         }
-
-
-//#define ALLOCTYPE(type,size) if (!(type##Pool = calloc(1, size*sizeof(type))))\
-//         {                                                            \
-//            werror(E_OUT_OF_MEM,__FILE__,(long) size);                     \
-//            exit (1);                                                \
-//         }
+#if 0
+#define  ALLOC(x,sz) if (!(x = calloc(1, sz)))      \
+         {                                          \ 
+            werror(E_OUT_OF_MEM,__FILE__,(long) sz);\
+            exit (1);                               \
+         }
+#endif
+
+#if 0
+#define ALLOCTYPE(type,size) if (!(type##Pool = calloc(1, size*sizeof(type))))\
+         {                                                            \
+            werror(E_OUT_OF_MEM,__FILE__,(long) size);               \
+            exit (1);                                                \
+         }
+#endif
 
 #define PUSH(x,y)   x##FreeStack[x##StackPtr++] = y
 #define PEEK(x)     x##FreeStack[x##StackPtr-1]