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