Fix dn_comp prototype and add stub
[musl] / src / network / dn_comp.c
1 #include <resolv.h>
2 #include "libc.h"
3
4 int __dn_comp(const char *src, unsigned char *dst, int space, unsigned char **dnptrs, unsigned char **lastdnptr)
5 {
6         return -1;
7 }
8
9 weak_alias(__dn_comp, dn_comp);