blob: c598797c72b6c315eb15fbe6f4c0935c09bb07ce [file] [log] [blame]
#include <sys/socket.h>
#include "syscall.h"
ssize_t sendto(int fd, const void *buf, size_t len, int flags, const struct sockaddr *addr, socklen_t alen)
{
return socketcall_cp(sendto, fd, buf, len, flags, addr, alen);
}