binaryninja/commercial/scc-docs/malloc.txt

16 lines
388 B
Plaintext
Raw Normal View History

2018-12-13 18:39:52 +00: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]