Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 #include <resolv.h> | |
| 2 #include "libc.h" | |
| 3 | |
| 4 int __res_msend(int, const unsigned char *const *, const int *, unsigned char *c onst *, int *, int); | |
| 5 | |
| 6 int __res_send(const unsigned char *msg, int msglen, unsigned char *answer, int anslen) | |
| 7 { | |
| 8 int r = __res_msend(1, &msg, &msglen, &answer, &anslen, anslen); | |
| 9 return r<0 ? r : anslen; | |
| 10 } | |
| 11 | |
| 12 weak_alias(__res_send, res_send); | |
| OLD | NEW |