v22.2b14/
v22.2b14/Win32/
v22.2b14/compat/
v22.2b14/testsuite/
v22.2b14/testsuite/clone/
v22.2b14/testsuite/command/
v22.2b14/testsuite/data/
v22.2b14/testsuite/etc/
v22.2b14/testsuite/include/
v22.2b14/testsuite/inherit/
v22.2b14/testsuite/inherit/master/
v22.2b14/testsuite/log/
v22.2b14/testsuite/single/
v22.2b14/testsuite/single/tests/compiler/
v22.2b14/testsuite/single/tests/efuns/
v22.2b14/testsuite/single/tests/operators/
v22.2b14/testsuite/u/
v22.2b14/tmp/
#ifndef DEBUGMALLOC_H
#  define DEBUGMALLOC_H
#  ifdef DEBUGMALLOC
void *debugmalloc PROT((int, int, char *));
void *debugrealloc PROT((void *, int, int, char *));
void *debugcalloc PROT((int, int, int, char *));
void debugfree PROT((void *));

void debugmalloc_init PROT((void));
void dump_malloc_data PROT((outbuffer_t *));

#    ifdef DEBUGMALLOC_EXTENSIONS
void set_malloc_mask PROT((int));
char *dump_debugmalloc PROT((char *, int));
#    endif
#  else
   /* not DEBUGMALLOC */
#    undef DEBUGMALLOC_EXTENSIONS
#    undef CHECK_MEMORY
#  endif
#endif