source: git/omalloc/omMalloc.h

spielwiese
Last change on this file was de0827, checked in by Hans Schoenemann <hannes@…>, 7 years ago
omalloc: removed unused dlmalloc
  • Property mode set to 100644
File size: 673 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 "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#endif /* OM_MALLOC_H */
29
Note: See TracBrowser for help on using the repository browser.