summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--userland/libc/sys/socket/listen.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/userland/libc/sys/socket/listen.c b/userland/libc/sys/socket/listen.c
index e69de29..a3bec10 100644
--- a/userland/libc/sys/socket/listen.c
+++ b/userland/libc/sys/socket/listen.c
@@ -0,0 +1,9 @@
+#include <sys/socket.h>
+#include <stdio.h>
+
+int listen(int socket, int backlog) {
+ (void)socket;
+ (void)backlog;
+ printf("TODO: Implement listen()\n");
+ return 0;
+}