clean up dns_parse_callback
[musl] / src / malloc / free.c
1 #include <stdlib.h>
2
3 void free(void *p)
4 {
5         __libc_free(p);
6 }