1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
/*******************************************************************
* File: omalloc_debug.c
* Purpose: implementation of ANSI-C conforming malloc functions
* -- debug versions
* Author: obachman@mathematik.uni-kl.de (Olaf Bachmann)
* Created: 11/99
*******************************************************************/
#include "omDefaultConfig.h"
#define OM_TRACK OM_DEFAULT_MIN_TRACK
#define OM_CHECK OM_DEFAULT_MIN_CHECK
#if OM_CHECK <= 0
#undef OM_CHECK
#define OM_CHECK 1
#endif
#include "omalloc/omalloc.c"
|