getopt: fix null pointer arithmetic ub
[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 }