diff --git a/Userland/Libraries/LibC/sys/select.h b/Userland/Libraries/LibC/sys/select.h index f16307c56c..029d0e2aa7 100644 --- a/Userland/Libraries/LibC/sys/select.h +++ b/Userland/Libraries/LibC/sys/select.h @@ -6,6 +6,10 @@ #pragma once +// Make sure we have the time type definitions. We include the kernel API +// header and not the LibC to avoid issues with circular includes. +#include + // Includes essentially mandated by POSIX: // https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_select.h.html #include @@ -14,7 +18,6 @@ #include #include #include -#include #include __BEGIN_DECLS