summaryrefslogtreecommitdiff
path: root/LibC/sys/socket.h
diff options
context:
space:
mode:
Diffstat (limited to 'LibC/sys/socket.h')
-rw-r--r--LibC/sys/socket.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/LibC/sys/socket.h b/LibC/sys/socket.h
index 59407872e1..4721205a19 100644
--- a/LibC/sys/socket.h
+++ b/LibC/sys/socket.h
@@ -51,6 +51,7 @@ int listen(int sockfd, int backlog);
int accept(int sockfd, sockaddr*, socklen_t*);
int connect(int sockfd, const sockaddr*, socklen_t);
ssize_t sendto(int sockfd, const void*, size_t, int flags, const struct sockaddr*, socklen_t);
+ssize_t recvfrom(int sockfd, void*, size_t, int flags, const struct sockaddr*, socklen_t);
__END_DECLS