This website works better with JavaScript
Home
Explore
Help
Sign In
hongwenjun
/
musl
mirror of
https://git.musl-libc.org/git/musl
Watch
1
Star
0
Fork
0
Files
Issues
0
Wiki
Browse Source
remove return with expression in void function
Michael Forney
4 years ago
parent
b7a130e0b9
commit
d8cb888db9
1 changed files
with
1 additions
and
1 deletions
Unified View
Show Diff Stats
1
1
src/malloc/free.c
+ 1
- 1
src/malloc/free.c
View File
@@ -2,5 +2,5 @@
void free(void *p)
void free(void *p)
{
{
-
return
__libc_free(p);
+ __libc_free(p);
}
}