From e655abc43e2c6be79d3d31ff521bc4f94126d976 Mon Sep 17 00:00:00 2001 From: Antonio Linares Date: Mon, 16 Aug 1999 09:37:07 +0000 Subject: [PATCH] added new hb_callStackShow() prototype --- harbour/include/ctoharb.h | 1 + 1 file changed, 1 insertion(+) diff --git a/harbour/include/ctoharb.h b/harbour/include/ctoharb.h index 8401e2668c..774ee14944 100644 --- a/harbour/include/ctoharb.h +++ b/harbour/include/ctoharb.h @@ -107,6 +107,7 @@ extern void hb_stackFree( void ); /* releases all memory used by the st extern void hb_stackPush( void ); /* pushes an item on to the stack */ extern void hb_stackInit( void ); /* initializes the stack */ extern void hb_stackShow( void ); /* show the types of the items on the stack for debugging purposes */ +extern void hb_callStackShow( void ); /* show the procedure names of the call stack for internal errors use */ #define STACK_INITHB_ITEMS 100 #define STACK_EXPANDHB_ITEMS 20