Skip to content
Snippets Groups Projects
Commit adb5c1a3 authored by Christian Engwer's avatar Christian Engwer
Browse files

[heap] remove unused struct block

parent 10c0a549
No related branches found
No related tags found
1 merge request!94Feature/enforce dynamic memory allocmodel
......@@ -124,12 +124,6 @@ typedef unsigned long MEM;
/* structs and typedefs for the simple and general heap management */
/****************************************************************************/
#warning we should not need the block ... get rid of it
struct block {
MEM size;
struct block *next,*previous;
};
typedef struct {
enum HeapType type;
MEM size;
......@@ -177,7 +171,6 @@ typedef struct {
/****************************************************************************/
typedef INT BLOCK_ID;
typedef struct block BLOCK;
/****************************************************************************/
/* */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment