This commit is contained in:
2021-02-01 23:28:24 +01:00
parent 9986d95dbb
commit 4673a23db7
11 changed files with 140 additions and 42 deletions

View File

@@ -9,9 +9,12 @@
void init_mmap(struct multiboot_mmap_entry *entries, u32 count);
void print_malloc_info();
void print_mmap_info();
void* malloc(unsigned int size);
void free(void* mem);
void *malloc(unsigned int size);
void free(void *mem);
#endif //NEW_KERNEL_MEM_H