From 9139515aed64909758f00c66c182cd94e05a3c2f Mon Sep 17 00:00:00 2001 From: nipos Date: Sat, 25 Feb 2023 18:53:46 +0100 Subject: [PATCH] LibCore: Include sys/filio.h for file-related ioctls on Solaris --- Userland/Libraries/LibCore/System.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Userland/Libraries/LibCore/System.h b/Userland/Libraries/LibCore/System.h index 5cf3487825..ea00998ac7 100644 --- a/Userland/Libraries/LibCore/System.h +++ b/Userland/Libraries/LibCore/System.h @@ -35,6 +35,10 @@ # include #endif +#ifdef AK_OS_SOLARIS +# include +#endif + namespace Core::System { #ifdef AK_OS_SERENITY