source: git/omalloc/omMalloc.h @ 49ea49

spielwiese
Last change on this file since 49ea49 was 49ea49, checked in by Oleksandr Motsak <motsak@…>, 12 years ago
CHG: eliminated omalloc/omlimits.h.in->.h in favour of static mylimits.h (limits.h) CHG: generate and use omalloc/omConfig.h (in favour of omConfig.h.in + config.h)
  • Property mode set to 100644
File size: 766 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 *  Version: $Id$
7 *******************************************************************/
8#ifndef OM_MALLOC_H
9#define OM_MALLOC_H
10
11#include "omalloc/omConfig.h"
12
13#ifdef OMALLOC_USES_SYSTEM_MALLOC
14#include "omalloc/omMallocSystem.h"
15#endif
16
17#ifdef OMALLOC_USES_EXTERNAL_MALLOC
18#include EXTERNAL_MALLOC_HEADER
19#endif
20
21#ifdef OMALLOC_USES_PMALLOC
22#include "omalloc/pmalloc.h"
23#endif
24
25#ifdef OMALLOC_USES_GMALLOC
26#include "omalloc/gmalloc.h"
27#endif
28
29#ifdef OMALLOC_USES_DLMALLOC
30#include "omalloc/dlmalloc.h"
31#endif
32
33#endif /* OM_MALLOC_H */
34
Note: See TracBrowser for help on using the repository browser.