8 lines
225 B
Markdown
8 lines
225 B
Markdown
# malloc
|
||
|
||
Programming malloc from scratch, as Dan Luu does in [this
|
||
blog post](https://danluu.com/malloc-tutorial/). Ported to `mmap` and OS X,
|
||
because `sbrk` is deprecated there.
|
||
|
||
Just use your system’s malloc. Seriously.
|