From e7142c482aea3c4bbce3879c0a1131f38f4ab0e6 Mon Sep 17 00:00:00 2001 From: Liav A Date: Fri, 24 Feb 2023 17:09:37 +0200 Subject: [PATCH] Kernel+Userland: Move prctl numbers header file to Kernel/API directory --- {Userland/Libraries/LibC/sys => Kernel/API}/prctl_numbers.h | 0 Kernel/Syscalls/prctl.cpp | 2 +- Userland/Libraries/LibC/sys/prctl.h | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename {Userland/Libraries/LibC/sys => Kernel/API}/prctl_numbers.h (100%) diff --git a/Userland/Libraries/LibC/sys/prctl_numbers.h b/Kernel/API/prctl_numbers.h similarity index 100% rename from Userland/Libraries/LibC/sys/prctl_numbers.h rename to Kernel/API/prctl_numbers.h diff --git a/Kernel/Syscalls/prctl.cpp b/Kernel/Syscalls/prctl.cpp index c9a5cab73a..f7f26c8de5 100644 --- a/Kernel/Syscalls/prctl.cpp +++ b/Kernel/Syscalls/prctl.cpp @@ -4,8 +4,8 @@ * SPDX-License-Identifier: BSD-2-Clause */ +#include #include -#include namespace Kernel { diff --git a/Userland/Libraries/LibC/sys/prctl.h b/Userland/Libraries/LibC/sys/prctl.h index 238affad82..d06b4f9351 100644 --- a/Userland/Libraries/LibC/sys/prctl.h +++ b/Userland/Libraries/LibC/sys/prctl.h @@ -6,8 +6,8 @@ #pragma once +#include #include -#include #include __BEGIN_DECLS