diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2022-09-13 17:42:39 +0200 |
---|---|---|
committer | Tim Flynn <trflynn89@pm.me> | 2022-09-18 13:27:24 -0400 |
commit | 87eac0e424cff4a1f941fb704b9362a08654c24d (patch) | |
tree | 8d9f042445090c8cd1daa9a02a54f0e3fc0d32a9 /Kernel/API | |
parent | a99cd09891a4f052e15a405dfefe4ef437e74b0a (diff) | |
download | serenity-87eac0e424cff4a1f941fb704b9362a08654c24d.zip |
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 <Kernel/API/POSIX/ucontext.h>
// That's it, this was enough to cause a compilation error.
Diffstat (limited to 'Kernel/API')
-rw-r--r-- | Kernel/API/POSIX/ucontext.h | 1 |
1 files changed, 1 insertions, 0 deletions
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 <Kernel/API/POSIX/signal.h> #include <Kernel/API/POSIX/sys/types.h> #include <Kernel/Arch/mcontext.h> |