source: git/omalloc/omalloc_debug.c @ cadaf2

spielwiese
Last change on this file since cadaf2 was 6ce030f, checked in by Oleksandr Motsak <motsak@…>, 12 years ago
removal of the $Id$ svn tag from everywhere NOTE: the git SHA1 may be used instead (only on special places) NOTE: the libraries Singular/LIB/*.lib still contain the marker due to our current use of svn
  • Property mode set to 100644
File size: 548 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 <omalloc/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.