Files
my-kern/kernel/mem/malloc.h

18 lines
243 B
C

//
// Created by rick on 23-02-21.
//
#ifndef NEW_KERNEL_MALLOC_H
#define NEW_KERNEL_MALLOC_H
#include <types.h>
void malloc_init();
void print_malloc_info();
void *malloc(size_t size);
void free(void *mem);
#endif //NEW_KERNEL_MALLOC_H