An implementation for malloc.
Go to file
warp03 876cfbf8b6
Initial commit
2023-04-30 22:09:30 +02:00
.gitignore Initial commit 2023-04-30 22:09:30 +02:00
LICENSE Initial commit 2023-04-30 22:09:30 +02:00
README.md Initial commit 2023-04-30 22:09:30 +02:00
u9malloc.c Initial commit 2023-04-30 22:09:30 +02:00
u9malloc.h Initial commit 2023-04-30 22:09:30 +02:00

README.md

u9malloc

An implementation for malloc.

The current implementation is ported from malloc used in sxboot. This implementation is very simple and, more importantly, very inefficient. DO NOT use the implementation currently in this repository. I am too lazy to write a better implementation right now. If I do get around to writing a better implementation, it will be put in this repository with the same API, replacing the old implementation.