binaryninja/personal/scc-docs/malloc.txt

16 lines
388 B
Plaintext
Raw Normal View History

2019-04-03 14:46:40 +01:00
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]