blob: 800fcfbaa6d8488c3ec4a425bea8bd0e31589dc2 [file] [log] [blame]
#include <sysdep.h>
#include <stdint.h>
#include <unistd.h>
#include <stddef.h>
#include <ros/syscall.h>
int __socket(int socket_family, int socket_type, int protocol) {
return ros_syscall(SYS_socket, socket_family, socket_type, protocol, 0,0,0);
}
//libc_hidden_def (__socket)
weak_alias (__socket, socket)