update mips cancellation-point syscall asm with 7-arg and r25 fixes
[oweals/musl.git] / src / network / freeaddrinfo.c
1 #include <stdlib.h>
2 #include <netdb.h>
3
4 void freeaddrinfo(struct addrinfo *p)
5 {
6         free(p);
7 }