Browse Source

remove return with expression in void function

master
Michael Forney 5 years ago
committed by Rich Felker
parent
commit
d8cb888db9
  1. 2
      src/malloc/free.c

2
src/malloc/free.c

@ -2,5 +2,5 @@
void free(void *p)
{
return __libc_free(p);
__libc_free(p);
}

Loading…
Cancel
Save