From c5dd5bee3fdae2eec30fe6597f6c79e644fe9e17 Mon Sep 17 00:00:00 2001 From: Kimyoungho <dudgh9661@ajou.ac.kr> Date: Fri, 15 Jun 2018 23:09:50 +0900 Subject: [PATCH] iiii --- alloc.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/alloc.h b/alloc.h index 3245f55..c23d6ce 100644 --- a/alloc.h +++ b/alloc.h @@ -1,7 +1,13 @@ #ifndef _ALLOC_H_ #define _ALLOC_H_ - +#define false 0 +#define true 1 +#include <stdint.h> typedef struct meta_struct { + uint32_t size; + uint32_t free; + meta_struct* next; + meta_struct* prev; } meta; -- GitLab