pub unsafe extern "C" fn nros_platform_realloc(
ptr: *mut c_void,
size: usize,
) -> *mut c_voidExpand description
Resize the block at ptr to size bytes. Equivalent to libc
realloc: NULL ptr → fresh alloc; 0 size → free + return NULL.
Preserves contents up to min(old, new).