From 581ac7e072633f68deed5c5d343603c053895907 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Wed, 7 Feb 2024 22:26:19 +0100 Subject: Minor fix --- userland/libc/sys/socket/listen.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'userland') 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 +#include + +int listen(int socket, int backlog) { + (void)socket; + (void)backlog; + printf("TODO: Implement listen()\n"); + return 0; +} -- cgit v1.2.3