My Project  debian-1:4.1.2-p1+ds-2
omMalloc.h
Go to the documentation of this file.
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