index
:
wasi-libc
debian
progress-linux
upstream
debian 12 backports: mozilla
Progress Linux
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
libc-top-half
/
musl
/
src
/
malloc
/
realloc.c
blob: fb0e8b7c47869c5ad259f430132867d3744a4441 (
plain
)
1
2
3
4
5
6
#include
<stdlib.h>
void
*
realloc
(
void
*
p
,
size_t
n
)
{
return
__libc_realloc
(
p
,
n
);
}