1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 21:37:35 +00:00

Kernel: Move Random.{h,cpp} code to Security subdirectory

This commit is contained in:
Liav A 2023-02-24 19:49:37 +02:00 committed by Jelle Raaijmakers
parent 1b04726c85
commit 490856453d
36 changed files with 35 additions and 35 deletions

View file

@ -11,7 +11,7 @@
#include <Kernel/API/KeyCode.h>
#include <Kernel/Arch/x86_64/ISABus/I8042Controller.h>
#include <Kernel/Interrupts/IRQHandler.h>
#include <Kernel/Random.h>
#include <Kernel/Security/Random.h>
namespace Kernel {

View file

@ -10,7 +10,7 @@
#include <Kernel/API/MousePacket.h>
#include <Kernel/Arch/x86_64/ISABus/I8042Controller.h>
#include <Kernel/Interrupts/IRQHandler.h>
#include <Kernel/Random.h>
#include <Kernel/Security/Random.h>
namespace Kernel {
class PS2MouseDevice : public IRQHandler

View file

@ -11,7 +11,7 @@
#include <Kernel/Arch/x86_64/ISABus/HID/PS2MouseDevice.h>
#include <Kernel/Arch/x86_64/ISABus/I8042Controller.h>
#include <Kernel/Interrupts/IRQHandler.h>
#include <Kernel/Random.h>
#include <Kernel/Security/Random.h>
namespace Kernel {