pennmush/game/
pennmush/game/data/
pennmush/game/log/
pennmush/game/save/
pennmush/game/txt/evt/
pennmush/game/txt/nws/
pennmush/os2/
/* A wrapper for the various malloc package options. See options.h
 * for descriptions of each.
 * Each package's source code must include config.h, mymalloc.h,
 * and confmagic.h.
 */
#include "options.h"

#if (MALLOC_PACKAGE == 1)
#include "csrimalloc.c"
#endif
#if (MALLOC_PACKAGE == 2)
#include "csrimalloc.c"
#endif
#if (MALLOC_PACKAGE == 3)
#include "smalloc.c"
#endif
#if (MALLOC_PACKAGE == 4)
#include "smalloc.c"
#endif
#if (MALLOC_PACKAGE == 5)
#include "gmalloc.c"
#endif