undo malloc improvement (it actually made it worse)

This commit is contained in:
Lauchmelder 2022-01-21 14:22:50 +01:00
parent aedba6e52b
commit c49ff2998d
3 changed files with 44 additions and 49 deletions

View file

@ -1,10 +1,8 @@
#pragma once
#include "stdint.h"
#define NULL ((void*)0)
void heap_init();
void* malloc(size_t size);
void* malloc();
void free(void* ptr);