You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
265 B
C

#ifndef H_MALLOC
#define H_MALLOC
#include "ktypes.h"
struct malloc_info {
void* allocate_memory_end;
void* allocate_memory_start;
};
optional_voidptr malloc_stack();
void free_stack(void* stack_top);
void malloc_init(struct malloc_info* info);
#endif