zig
Code
Branches
Tags
Commits
master
zig
/
lib
/
libc
/
musl
/
src
/
malloc
/
free.c
Top
1
#
include
<stdlib.h>
2
3
void
free
(
void
*
p
)
4
{
5
__libc_free
(
p
)
;
6
}