blob: f3a6e7f41fdcd153c502864457dd5af066e96816 [file] [log] [blame]
#include <sysdep.h>
#include <stdint.h>
#include <unistd.h>
#include <stddef.h>
#include <sys/socket.h>
#include <ros/syscall.h>
ssize_t
__sendto(int s, const void *buf, size_t len, int flags, const struct sockaddr *to, socklen_t tolen) {
return ros_syscall(SYS_sendto, s, buf, len, flags, to, tolen);
}
weak_alias (__sendto, sendto)