The C `malloc` function. `malloc` allocates storage sufficient to hold `size` bytes, and returns a pointer to it. The allocated memory is aligned to `MIN_ALIGN`. The memory is not initialized. If there is insufficient space to perform the allocation, `errno` is set to `ENOMEM` and the return value is `NULL`. # Platform-specific behavior On Linux, if `size` is 0, `malloc` returns either `NULL` o
(&self, size: size_t)
source not stored for this graph (policy: none)
no test coverage detected