This website works better with JavaScript
Trang chủ
Khám phá
Trợ giúp
Đăng nhập
hongwenjun
/
musl
mirror of
https://git.musl-libc.org/git/musl
Xem
1
Star
0
Fork
0
Các tập tin
Các vấn đề
0
Wiki
Browse Source
remove return with expression in void function
Michael Forney
4 năm trước cách đây
mục cha
b7a130e0b9
commit
d8cb888db9
1 tập tin đã thay đổi
với
1 bổ sung
và
1 xóa
Split View
Hiển thị tình trạng sai khác
1
1
src/malloc/free.c
+ 1
- 1
src/malloc/free.c
Xem Tập Tin
@@ -2,5 +2,5 @@
void free(void *p)
{
-
return
__libc_free(p);
+ __libc_free(p);
}