OSDN Git Service

switch standard resolver functions to use the new dns backend
[android-x86/external-musl-libc.git] / 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);