source: asp3_tinet_ecnl_rx/trunk/musl-1.1.18/src/network/res_send.c@ 337

Last change on this file since 337 was 337, checked in by coas-nagasima, 6 years ago

ASP3版ECNLを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc;charset=UTF-8
File size: 360 bytes
Line 
1#include <resolv.h>
2#include "libc.h"
3
4int __res_msend(int, const unsigned char *const *, const int *, unsigned char *const *, int *, int);
5
6int __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
12weak_alias(__res_send, res_send);
Note: See TracBrowser for help on using the repository browser.