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/stdlib.h | |
parent | a4db5b4706236bd266dcc76b77604bfa8599dc14 (diff) |
init: dead simple malloc
Diffstat (limited to 'src/init/stdlib.h')
-rw-r--r-- | src/init/stdlib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/init/stdlib.h b/src/init/stdlib.h index f8ab6c0..b1709e0 100644 --- a/src/init/stdlib.h +++ b/src/init/stdlib.h @@ -1,4 +1,5 @@ #pragma once +#include <init/malloc.h> #include <shared/mem.h> #include <stdbool.h> #include <stddef.h> |