source: git/omalloc/omalloc_debug.c @ 8d1432e

spielwiese
Last change on this file since 8d1432e was be127e, checked in by Oleksandr Motsak <motsak@…>, 10 years ago
Omalloc should not reference itself in include pathes
  • 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.