index
:
musl
awilfox/monotonic-dns
lookup-serv
master
posix-compliance
ustat
The musl libc tree (WIP / dev branches)
root
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
malloc
/
realloc.c
blob: fb0e8b7c47869c5ad259f430132867d3744a4441 (
plain
) (
blame
)
1
2
3
4
5
6
#include
<stdlib.h>
void
*
realloc
(
void
*
p
,
size_t
n
)
{
return
__libc_realloc
(
p
,
n
);
}