blob: 2297105f82b2420848dea50fc52a27138ffd2627 [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 __recv(int s, void *buf, size_t len, int flags) {
return ros_syscall(SYS_recv, s, buf, len, flags, 0, 0);
}
//libc_hidden_def (__recv)
weak_alias (__recv, recv)