diff options
author | dzwdz | 2022-05-26 20:04:26 +0200 |
---|---|---|
committer | dzwdz | 2022-05-26 20:04:26 +0200 |
commit | 0604552310847fd695e9cf62fcddb8e18720fc3b (patch) | |
tree | cc58fac2e746d418675e17b55824f57cb3b86644 /src/init/malloc.h | |
parent | a4db5b4706236bd266dcc76b77604bfa8599dc14 (diff) |
init: dead simple malloc
Diffstat (limited to 'src/init/malloc.h')
-rw-r--r-- | src/init/malloc.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/init/malloc.h b/src/init/malloc.h new file mode 100644 index 0000000..5916ebc --- /dev/null +++ b/src/init/malloc.h @@ -0,0 +1,5 @@ +#pragma once +#include <stddef.h> + +void *malloc(size_t size); +void free(void *ptr); |