Kernel+Userland: Move prctl numbers header file to Kernel/API directory

This commit is contained in:
Liav A 2023-02-24 17:09:37 +02:00 committed by Linus Groh
parent d62c95d779
commit e7142c482a
Notes: sideshowbarker 2024-07-17 04:09:56 +09:00
3 changed files with 2 additions and 2 deletions

View file

@ -4,8 +4,8 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <Kernel/API/prctl_numbers.h>
#include <Kernel/Process.h>
#include <LibC/sys/prctl_numbers.h>
namespace Kernel {

View file

@ -6,8 +6,8 @@
#pragma once
#include <Kernel/API/prctl_numbers.h>
#include <sys/cdefs.h>
#include <sys/prctl_numbers.h>
#include <sys/types.h>
__BEGIN_DECLS