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 c4f10e2..7a2cc23 100644 --- a/userland/libc/include/sys/socket.h +++ b/userland/libc/include/sys/socket.h @@ -7,3 +7,4 @@ size_t recvfrom(int socket, void *buffer, size_t length, int flags, struct sockaddr *address, socklen_t *address_len); 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); |