From 35498559b9ed5d11157592befba5d56fb4f7e2f1 Mon Sep 17 00:00:00 2001 From: jtvolpe Date: Tue, 6 Feb 2001 12:59:38 +0000 Subject: [PATCH] Eliminated the // on block comments from my last commit (JTV) git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@590 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- debugger/mcs51/sdcdb.h | 31 +++++++++++++++++-------------- 1 file changed, 17 insertions(+), 14 deletions(-) diff --git a/debugger/mcs51/sdcdb.h b/debugger/mcs51/sdcdb.h index 02f8be0b..b91ae279 100644 --- a/debugger/mcs51/sdcdb.h +++ b/debugger/mcs51/sdcdb.h @@ -48,20 +48,23 @@ typedef short bool; #define min(a,b) (a < b ? a : b) #endif -//#ifndef ALLOC -//#define ALLOC(x,sz) if (!(x = calloc(1, sz))) \ -// { \ -// fprintf(stderr,"sdcdb: out of memory\n"); \ -// exit (1); \ -// } -//#endif -//#ifndef ALLOC_ATOMIC -//#define ALLOC_ATOMIC(x,sz) if (!(x = calloc(1, sz))) \ -// { \ -// fprintf(stderr,"sdcdb: out of memory\n"); \ -// exit (1); \ -// } -//#endif +/* + * #ifndef ALLOC + * #define ALLOC(x,sz) if (!(x = calloc(1, sz))) \ + * { \ + * fprintf(stderr,"sdcdb: out of memory\n"); \ + * exit (1); \ + * } + * #endif + * #ifndef ALLOC_ATOMIC + * #define ALLOC_ATOMIC(x,sz) if (!(x = calloc(1, sz))) \ + * { \ + * fprintf(stderr,"sdcdb: out of memory\n"); \ + * exit (1); \ + * } + * #endif + */ + /* generalpurpose stack related macros */ #define STACK_DCL(stack,type,size) \ typedef type t_##stack ; \ -- 2.47.2