From 87eac0e424cff4a1f941fb704b9362a08654c24d Mon Sep 17 00:00:00 2001 From: Ben Wiederhake Date: Tue, 13 Sep 2022 17:42:39 +0200 Subject: [PATCH] Kernel: Add missing include in API This remained undetected for a long time as HeaderCheck is disabled by default. This commit makes the following file compile again: // file: compile_me.cpp #include // That's it, this was enough to cause a compilation error. --- Kernel/API/POSIX/ucontext.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Kernel/API/POSIX/ucontext.h b/Kernel/API/POSIX/ucontext.h index ef6836250b..e7c4cffd96 100644 --- a/Kernel/API/POSIX/ucontext.h +++ b/Kernel/API/POSIX/ucontext.h @@ -6,6 +6,7 @@ #pragma once +#include #include #include