blob: 035a15f8a0711fdd096ef4ce95229e6608871d2e (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#include <sys/socket.h>
#include "syscall.h"
#include "libc.h"
ssize_t recvfrom(int fd, void *buf, size_t len, int flags, struct sockaddr *addr, socklen_t *alen)
{
return socketcall_cp(recvfrom, fd, buf, len, flags, addr, alen);
}
|