dns: treat names rejected by res_mkquery as nonexistent rather than error
[musl] / src / network / send.c
1 #include <sys/socket.h>
2
3 ssize_t send(int fd, const void *buf, size_t len, int flags)
4 {
5         return sendto(fd, buf, len, flags, 0, 0);
6 }