tmuck2.4/
tmuck2.4/admin/scripts/
tmuck2.4/docs/
tmuck2.4/minimal-db/
tmuck2.4/minimal-db/data/
tmuck2.4/minimal-db/logs/
tmuck2.4/minimal-db/muf/
tmuck2.4/old/
tmuck2.4/src/
tmuck2.4/src/compile/
tmuck2.4/src/editor/
tmuck2.4/src/game/
tmuck2.4/src/interface/
tmuck2.4/src/scripts/
tmuck2.4/src/utilprogs/
/* debug_malloc.h,v 2.3 1993/04/08 20:24:47 dmoore Exp */
#ifndef DEBUG_MALLOC_H
#define DEBUG_MALLOC_H

extern void *debug_realloc(void *, size_t, const char *, const int);
extern void *debug_malloc(size_t, const char *, const int);
extern void debug_free(void *, const char *, const int);
extern void *debug_calloc(size_t, const char *, const int);
extern void debug_mstats(const char *);

/* Possible defines to allow easy integration into existing code.  Install
   these _after_ including stdlib.h on ansi systems. */
/*
#define malloc(x)	debug_malloc(x, __FILE__, __LINE__)
#define realloc(x, y)	debug_realloc(x, y, __FILE__, __LINE__)
#define free(x)		debug_free(x, __FILE__, __LINE__)
#define calloc(x)	debug_calloc(x, __FILE__, __LINE__)
*/

#endif /* DEBUG_MALLOC_H */