summaryrefslogtreecommitdiff
path: root/src/network/res_query.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/network/res_query.c')
-rw-r--r--src/network/res_query.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/network/res_query.c b/src/network/res_query.c
index 691ccb16..33543dcf 100644
--- a/src/network/res_query.c
+++ b/src/network/res_query.c
@@ -2,7 +2,7 @@
#include <netdb.h>
#include "libc.h"
-int __res_query(const char *name, int class, int type, unsigned char *dest, int len)
+int res_query(const char *name, int class, int type, unsigned char *dest, int len)
{
unsigned char q[280];
int ql = __res_mkquery(0, name, class, type, 0, 0, 0, q, sizeof q);
@@ -10,5 +10,4 @@ int __res_query(const char *name, int class, int type, unsigned char *dest, int
return __res_send(q, ql, dest, len);
}
-weak_alias(__res_query, res_query);
-weak_alias(__res_query, res_search);
+weak_alias(res_query, res_search);