source: git/omalloc/omMalloc.h @ f5d2647

spielwiese
Last change on this file since f5d2647 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: 748 bytes
Line 
1/*******************************************************************
2 *  File:    omMallocSystem.h
3 *  Purpose: declaration of macros for malloc to be used from the system
4 *  Author:  obachman (Olaf Bachmann)
5 *  Created: 11/99
6 *******************************************************************/
7#ifndef OM_MALLOC_H
8#define OM_MALLOC_H
9
10#include "omalloc/omConfig.h"
11
12#ifdef OMALLOC_USES_SYSTEM_MALLOC
13#include "omalloc/omMallocSystem.h"
14#endif
15
16#ifdef OMALLOC_USES_EXTERNAL_MALLOC
17#include EXTERNAL_MALLOC_HEADER
18#endif
19
20#ifdef OMALLOC_USES_PMALLOC
21#include "omalloc/pmalloc.h"
22#endif
23
24#ifdef OMALLOC_USES_GMALLOC
25#include "omalloc/gmalloc.h"
26#endif
27
28#ifdef OMALLOC_USES_DLMALLOC
29#include "omalloc/dlmalloc.h"
30#endif
31
32#endif /* OM_MALLOC_H */
33
Note: See TracBrowser for help on using the repository browser.