Files
osdev/libc/malloc.h
T
Luke Street 295ec24a65 Serial I/O; simple VGA graphics output; multiboot info & memory map
Initial work on shell history using arrow keys
2018-09-27 01:06:55 -04:00

11 lines
180 B
C

#pragma once
#include <common.h>
void *malloc(size_t size);
void *realloc(void *ptr, size_t new_size);
void free(void *ptr);
void print_chunk_debug(void *ptr, bool recursive);