index
:
grovel
main
Unnamed repository; edit this file 'description' to name the repository.
External SSH Git service user
about
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
);
}