mirror of
git://git.musl-libc.org/musl
synced 2025-03-06 20:48:29 +01:00
remove return with expression in void function
This commit is contained in:
parent
b7a130e0b9
commit
d8cb888db9
1 changed files with 1 additions and 1 deletions
|
@ -2,5 +2,5 @@
|
||||||
|
|
||||||
void free(void *p)
|
void free(void *p)
|
||||||
{
|
{
|
||||||
return __libc_free(p);
|
__libc_free(p);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue