binaryninja/scc-docs/malloc.txt
Giulio De Pasquale 52e9dc828b dindon
2018-12-13 18:39:52 +00:00

16 lines
388 B
Plaintext

malloc
======
:title: Shellcode Compiler Runtime
---------------------------------------------
void* malloc(size_t len);
---------------------------------------------
Allocates `len` bytes from the heap, and returns a pointer to the new buffer. The buffer is aligned to the
size of a pointer, and is always executable.
See also
--------
link:alloca.html[alloca],
link:free.html[free]