Skip to content
Snippets Groups Projects
Commit c63f95c6 authored by kim-dong-hwi's avatar kim-dong-hwi
Browse files

only make malloc

parent f41c3910
No related branches found
No related tags found
No related merge requests found
#ifndef _ALLOC_H_
#define _ALLOC_H_
typedef struct meta_struct {
#include <sys/types.h>
#include <stdint.h>
typedef struct meta_struct{
size_t size;
size_t free;
char offset[100];
struct meta_struct *next;
struct meta_struct *prev;
} meta;
void *make_malloc(size_t size);
size_t * start;
size_t * end;
meta * find;
meta * k_malloc;
meta *read_start;
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment