diff options
Diffstat (limited to 'userland/libc/include/sys/socket.h')
-rw-r--r-- | userland/libc/include/sys/socket.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/userland/libc/include/sys/socket.h b/userland/libc/include/sys/socket.h index 7a2cc23..fb874a1 100644 --- a/userland/libc/include/sys/socket.h +++ b/userland/libc/include/sys/socket.h @@ -8,3 +8,4 @@ size_t recvfrom(int socket, void *buffer, size_t length, int flags, size_t sendto(int socket, const void *message, size_t length, int flags, const struct sockaddr *dest_addr, socklen_t dest_len); int listen(int socket, int backlog); +int connect(int sockfd, const struct sockaddr *addr, socklen_t addrlen); |