diff --git a/src/acconfig.h b/src/acconfig.h index 4d9b5654366e959f9531547402f0bb186d58f956..eaebaad07d8f694d41c7b57dc44d42fdf15802f3 100644 --- a/src/acconfig.h +++ b/src/acconfig.h @@ -1,5 +1,5 @@ /* - * $Id: acconfig.h,v 1.32 1998/09/05 15:52:26 grubba Exp $ + * $Id: acconfig.h,v 1.33 1998/10/11 22:33:11 hubbe Exp $ */ #ifndef MACHINE_H #define MACHINE_H @@ -276,10 +276,12 @@ #ifdef HAVE_ANSI_CONCAT #define PIKE_CONCAT(X,Y) X##Y #define PIKE_CONCAT3(X,Y,Z) X##Y##Z +#define PIKE_CONCAT4(X,Y,Z,Q) X##Y##Z##Q #else #ifdef HAVE_KR_CONCAT #define PIKE_CONCAT(X,Y) X/**/Y #define PIKE_CONCAT3(X,Y,Z) X/**/Y/**/Z +#define PIKE_CONCAT4(X,Y,Z,Q) X/**/Y/**/Z/**/Q #endif /* HAVE_KR_CONCAT */ #endif /* HAVE_ANSI_CONCAT */ diff --git a/src/pike_memory.h b/src/pike_memory.h index d21ae367d6cabde51df60e3d722760cded77b214..5daedd73463eef8d9005a18a0ecb6e3dd5cb8dab 100644 --- a/src/pike_memory.h +++ b/src/pike_memory.h @@ -5,7 +5,7 @@ \*/ /* - * $Id: pike_memory.h,v 1.6 1998/10/11 11:18:52 hubbe Exp $ + * $Id: pike_memory.h,v 1.7 1998/10/11 22:33:11 hubbe Exp $ */ #ifndef MEMORY_H #define MEMORY_H @@ -93,35 +93,6 @@ void memfill(char *to, char *from, INT32 fromlen, INT32 offset); -char *debug_xalloc(long size); -struct fileloc; -BLOCK_ALLOC(fileloc, 4090) -struct memloc; -BLOCK_ALLOC(memloc, 16382) -struct memhdr; -char *do_pad(char *mem, long size); -void check_pad(struct memhdr *mh, int freeok); -void low_add_marks_to_memhdr(struct memhdr *to, - struct memhdr *from); -void add_marks_to_memhdr(struct memhdr *to, void *ptr); -BLOCK_ALLOC(memhdr,16382) - - - - -static struct memhdr *find_memhdr(void *p); -void *debug_malloc(size_t s, const char *fn, int line); -void *debug_calloc(size_t a, size_t b, const char *fn, int line); -void *debug_realloc(void *p, size_t s, const char *fn, int line); -void debug_free(void *p, const char *fn, int line); -char *debug_strdup(const char *s, const char *fn, int line); -void dump_memhdr_locations(struct memhdr *from, - struct memhdr *notfrom); -void debug_malloc_dump_references(void *x); -void cleanup_memhdrs(); -int main(int argc, char *argv[]); -void * debug_malloc_update_location(void *p,const char *fn, int line); -void reset_debug_malloc(void); /* Prototypes end here */ #undef BLOCK_ALLOC