Use cfg instead appconfig in bertos modules. Reformat. Remove CVS logs.
[bertos.git] / bertos / mware / heap.h
index f02a7d558fc3a87fd6c61e43214db5a97f988ac0..0d8f7778cb643223d6e28961a2e9405eb1c90d32 100644 (file)
  *
  * \brief Heap subsystem (public interface).
  *
- * \version $Id$
- *
- * \author Bernardo Innocenti <bernie@develer.com>
- *
  * \todo Heap memory could be defined as an array of MemChunk, and used
  * in this form also within the implementation. This would probably remove
  * memory alignment problems, and also some aliasing issues.
  *
+ * \version $Id$
+ *
+ * \author Bernardo Innocenti <bernie@develer.com>
+ *
  */
 
 #ifndef MWARE_HEAP_H
 #define MWARE_HEAP_H
 
-#include <appconfig.h>
-
+#include <cfg/cfg_heap.h>
 #include <cfg/compiler.h>
 
 struct _MemChunk;