From ec1926213444252b1be68711cc3b3b31760d765d Mon Sep 17 00:00:00 2001 From: Martin Stjernholm <mast@lysator.liu.se> Date: Fri, 31 Aug 2001 01:32:16 +0200 Subject: [PATCH] Some more declarations. Rev: src/pike_types.h:1.72 --- src/pike_types.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/pike_types.h b/src/pike_types.h index 1fea0d94bb..d5b1dca53c 100644 --- a/src/pike_types.h +++ b/src/pike_types.h @@ -5,7 +5,7 @@ \*/ /* - * $Id: pike_types.h,v 1.71 2001/04/01 15:40:22 grubba Exp $ + * $Id: pike_types.h,v 1.72 2001/08/30 23:32:16 mast Exp $ */ #ifndef PIKE_TYPES_H #define PIKE_TYPES_H @@ -35,6 +35,9 @@ struct pike_type struct pike_type *cdr; }; +#include "block_alloc_h.h" +BLOCK_ALLOC(pike_type, n/a) + /* pike_type flags: */ #define PT_FLAG_MARKER 1 /* Type contains markers. */ @@ -375,6 +378,7 @@ int pike_type_allow_premature_toss(struct pike_type *type); #endif /* !USE_PIKE_TYPE */ #ifdef DEBUG_MALLOC +void describe_all_types(void); #define pop_type() ((struct pike_type *)debug_malloc_pass(debug_pop_type())) #define compiler_pop_type() ((struct pike_type *)debug_malloc_pass(debug_compiler_pop_type())) #define pop_unfinished_type() \ -- GitLab