Add a libc skeleton with a primitive malloc.

This commit is contained in:
Drew Galbraith 2023-06-07 10:33:10 -07:00
parent eb04242a59
commit dcc05f2741
7 changed files with 73 additions and 1 deletions

View file

@ -0,0 +1,5 @@
#pragma once
#include "stddef.h"
void* malloc(size_t size);