source: git/omalloc/omalloc_debug.c @ 5ef600

spielwiese
Last change on this file since 5ef600 was 991dd9, checked in by Hans Schoenemann <hannes@…>, 7 years ago
use include ".." for singular related .h, p5
  • Property mode set to 100644
File size: 540 bytes
Line 
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"
Note: See TracBrowser for help on using the repository browser.