From 938a4e26b517d85df3da869f558edc2747a7f591 Mon Sep 17 00:00:00 2001 From: nipos Date: Tue, 25 Apr 2023 17:00:10 +0200 Subject: [PATCH] LibCore: Include sys/ucred.h in System.h for FreeBSD --- 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 75e4fceb64..54fa4c5a36 100644 --- a/Userland/Libraries/LibCore/System.h +++ b/Userland/Libraries/LibCore/System.h @@ -39,6 +39,10 @@ # include #endif +#ifdef AK_OS_FREEBSD +# include +#endif + #ifdef AK_OS_SOLARIS # include # include