source: git/omalloc/omalloc_debug.c @ 4697a8a

fieker-DuValspielwiese
Last change on this file since 4697a8a was e70e45, checked in by Olaf Bachmann <obachman@…>, 24 years ago
* re-added files git-svn-id: file:///usr/local/Singular/svn/trunk@4521 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 608 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 *  Version: $Id: omalloc_debug.c,v 1.3 2000-08-14 12:26:51 obachman Exp $
8 *******************************************************************/
9#include "omDefaultConfig.h"
10
11#define OM_TRACK OM_DEFAULT_MIN_TRACK
12#define OM_CHECK OM_DEFAULT_MIN_CHECK
13
14#if OM_CHECK <= 0
15#undef OM_CHECK
16#define OM_CHECK 1
17#endif
18
19#include "omalloc.c"
20
Note: See TracBrowser for help on using the repository browser.