Sign in
cobalt
/
cobalt
/
fc84fc2a551a0cf60d391fb3e7d8229e6f9a9daf
/
.
/
third_party
/
musl
/
src
/
malloc
/
realloc.c
blob: fb0e8b7c47869c5ad259f430132867d3744a4441 [
file
] [
log
] [
blame
]
#include
<stdlib.h>
void
*
realloc
(
void
*
p
,
size_t
n
)
{
return
__libc_realloc
(
p
,
n
);
}