1 #ifndef _MALLOC_SETTINGS_H
2 #define _MALLOC_SETTINGS_H
3 /*********************************************************************
4 ** Title: Dynamic memory (de-)allocation library for wizC.
6 ** Author: Marcel van Lieshout
8 ** Copyright: (c) 2005, HMCS, Marcel van Lieshout
10 ** License: This software is released to the public domain and comes
11 ** without warranty and/or guarantees of any kind. You have
12 ** the right to use, copy, modify and/or (re-)distribute the
13 ** software as long as the reference to the author is
14 ** maintained in the software and a reference to the author
15 ** is included in any documentation of each product in which
16 ** this library (in it's original or in a modified form)
18 *********************************************************************/
20 /*********************************************************************
22 *********************************************************************/
23 //#define MALLOC_SMALL
26 /*********************************************************************
27 ** The size of the heap
28 *********************************************************************/
29 #define MALLOC_HEAP_SIZE (3200)
31 /*********************************************************************
32 ** Should released memory be scribbled with 0x55 before releasing it?
33 *********************************************************************/
34 //#define MALLOC_SCRIBBLE
36 /********************************************************************
38 *********************************************************************/
39 //#define MALLOC_DEBUG
41 #endif /* _MALLOC_SETTINGS_H */