Selaa lähdekoodia

res_search symbol, aliased to res_query for now (better than nothing)

Rich Felker 13 vuotta sitten
vanhempi
sitoutus
e936e4612f
1 muutettua tiedostoa jossa 3 lisäystä ja 0 poistoa
  1. 3 0
      src/network/res_query.c

+ 3 - 0
src/network/res_query.c

@@ -1,5 +1,6 @@
 #include <netdb.h>
 #include "__dns.h"
+#include "libc.h"
 
 int res_query(const char *name, int class, int type, unsigned char *dest, int len)
 {
@@ -18,3 +19,5 @@ int res_query(const char *name, int class, int type, unsigned char *dest, int le
 	}
 	return 512;
 }
+
+weak_alias(res_query, res_search);