make type of st_dev explicitly dev_t in x86_64 stat.h
[musl] / src / network / recv.c
1 #include <sys/socket.h>
2
3 ssize_t recv(int fd, void *buf, size_t len, int flags)
4 {
5         return recvfrom(fd, buf, len, flags, 0, 0);
6 }