source: git/omalloc/omMalloc.h @ a2f973

spielwiese
Last change on this file since a2f973 was a2f973, checked in by Mohamed Barakat <mohamed.barakat@…>, 13 years ago
- modified and added omMalloc.h (should not be installed) - configure.ac no longer generates omMalloc.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.