diff options
author | Liav A <liavalb@gmail.com> | 2022-10-23 21:51:56 +0300 |
---|---|---|
committer | Andrew Kaster <andrewdkaster@gmail.com> | 2022-11-08 02:54:48 -0700 |
commit | f53149d5f61422bad5507661af2ff3374bc0f9c8 (patch) | |
tree | d3e233cc35704c534badd0642f008bb024008722 /Kernel/FileSystem/SysFS/Component.cpp | |
parent | 7eed3dab5d77116ba9749ceb66e5d4e998db7c22 (diff) | |
download | serenity-f53149d5f61422bad5507661af2ff3374bc0f9c8.zip |
Kernel: Split the SysFS core files into smaller components
Diffstat (limited to 'Kernel/FileSystem/SysFS/Component.cpp')
-rw-r--r-- | Kernel/FileSystem/SysFS/Component.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Kernel/FileSystem/SysFS/Component.cpp b/Kernel/FileSystem/SysFS/Component.cpp index 77140bdf15..a79bf06200 100644 --- a/Kernel/FileSystem/SysFS/Component.cpp +++ b/Kernel/FileSystem/SysFS/Component.cpp @@ -4,8 +4,10 @@ * SPDX-License-Identifier: BSD-2-Clause */ -#include <Kernel/FileSystem/SysFS.h> #include <Kernel/FileSystem/SysFS/Component.h> +#include <Kernel/FileSystem/SysFS/DirectoryInode.h> +#include <Kernel/FileSystem/SysFS/Inode.h> +#include <Kernel/FileSystem/SysFS/LinkInode.h> #include <Kernel/FileSystem/SysFS/Registry.h> #include <Kernel/KLexicalPath.h> |