From 8393e737b7a246daa4db3bbc4260293e10584bd2 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Wed, 16 Jun 2021 11:15:13 +0200 Subject: [PATCH] LibC: Make sure the definition for struct timeval is available Ideally we'd have a separate header with just struct timeval and include that (i.e. in a way similar to how macOS, FreeBSD and glibc do this). --- Userland/Libraries/LibC/sys/select.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Libraries/LibC/sys/select.h b/Userland/Libraries/LibC/sys/select.h index d1a3f47ecc..57a61cc145 100644 --- a/Userland/Libraries/LibC/sys/select.h +++ b/Userland/Libraries/LibC/sys/select.h @@ -10,6 +10,7 @@ #include #include #include +#include #include __BEGIN_DECLS