1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:48:11 +00:00

Kernel: Move Credentials.{cpp,h} to the Security subdirectory

This commit is contained in:
Liav A 2023-02-24 19:57:27 +02:00 committed by Jelle Raaijmakers
parent aaa1de7878
commit ee0ccdaebe
5 changed files with 4 additions and 4 deletions

View file

@ -11,10 +11,10 @@
#include <AK/Types.h>
#include <Kernel/API/Syscall.h>
#include <Kernel/Coredump.h>
#include <Kernel/Credentials.h>
#include <Kernel/Debug.h>
#include <Kernel/Devices/DeviceManagement.h>
#include <Kernel/InterruptDisabler.h>
#include <Kernel/Security/Credentials.h>
#ifdef ENABLE_KERNEL_COVERAGE_COLLECTION
# include <Kernel/Devices/KCOVDevice.h>
#endif