summaryrefslogtreecommitdiff
path: root/userland
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2024-06-21 13:42:57 +0200
committerAnton Kling <anton@kling.gg>2024-06-21 13:42:57 +0200
commit7045cec0314ca2643182ca3df7a483ee98c6c1ae (patch)
tree3fd9fe692755788cd8123cd3b5e3159566bd2453 /userland
parent9725791024d159ba0c5b6e8eef13a0e9077523a9 (diff)
Userland: Use sys/socket.h not socket.h
These files only compiled due to the previous header not being cleaned up
Diffstat (limited to 'userland')
-rw-r--r--userland/ante/ante.c2
-rw-r--r--userland/snake/snake.c2
-rw-r--r--userland/terminal/term.c2
-rw-r--r--userland/windowserver/ws.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/userland/ante/ante.c b/userland/ante/ante.c
index b5f4eab..0233e32 100644
--- a/userland/ante/ante.c
+++ b/userland/ante/ante.c
@@ -3,7 +3,7 @@
#include <libgui.h>
#include <poll.h>
#include <pty.h>
-#include <socket.h>
+#include <sys/socket.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
diff --git a/userland/snake/snake.c b/userland/snake/snake.c
index 7bfb312..be688eb 100644
--- a/userland/snake/snake.c
+++ b/userland/snake/snake.c
@@ -4,7 +4,7 @@
#include <libgui.h>
#include <poll.h>
#include <pty.h>
-#include <socket.h>
+#include <sys/socket.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
diff --git a/userland/terminal/term.c b/userland/terminal/term.c
index b0eabfd..ced3a60 100644
--- a/userland/terminal/term.c
+++ b/userland/terminal/term.c
@@ -5,7 +5,7 @@
#include <poll.h>
#include <pty.h>
#include <signal.h>
-#include <socket.h>
+#include <sys/socket.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
diff --git a/userland/windowserver/ws.c b/userland/windowserver/ws.c
index 4e5905e..b177358 100644
--- a/userland/windowserver/ws.c
+++ b/userland/windowserver/ws.c
@@ -5,7 +5,7 @@
#include <fcntl.h>
#include <math.h>
#include <poll.h>
-#include <socket.h>
+#include <sys/socket.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>