Index: fusl/src/network/res_query.c |
diff --git a/fusl/src/network/res_query.c b/fusl/src/network/res_query.c |
index 2b4e4bb1bef80cbee75460ce55864fe01ba57b6e..9f37c135400e66266ba0ec7bb9289646299748cc 100644 |
--- a/fusl/src/network/res_query.c |
+++ b/fusl/src/network/res_query.c |
@@ -2,15 +2,27 @@ |
#include <netdb.h> |
#include "libc.h" |
-int __res_mkquery(int, const char *, int, int, const unsigned char *, int, const unsigned char*, unsigned char *, int); |
-int __res_send(const unsigned char *, int, unsigned char *, int); |
+int __res_mkquery(int, |
+ const char*, |
+ int, |
+ int, |
+ const unsigned char*, |
+ int, |
+ const unsigned char*, |
+ unsigned char*, |
+ int); |
+int __res_send(const unsigned char*, int, unsigned char*, int); |
-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); |
- if (ql < 0) return ql; |
- return __res_send(q, ql, dest, 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); |
+ if (ql < 0) |
+ return ql; |
+ return __res_send(q, ql, dest, len); |
} |
weak_alias(__res_query, res_query); |