blob: 170a12037d05c1a0e7ebcc787f9377b2d13070d6 [file] [log] [blame]
#include <sys/socket.h>
#include "syscall.h"
#include "libc.h"
int connect(int fd, const struct sockaddr* addr, socklen_t len) {
return socketcall_cp(connect, fd, addr, len, 0, 0, 0);
}