Move VFS sources into Kernel/.

This commit is contained in:
Andreas Kling 2019-01-23 05:13:17 +01:00
commit 754037874c
Notes: sideshowbarker 2024-07-19 15:58:39 +09:00
49 changed files with 35 additions and 37 deletions

View file

@ -9,7 +9,7 @@
#include <AK/Vector.h>
#include <AK/HashTable.h>
#include <AK/AKString.h>
#include <VirtualFileSystem/VirtualFileSystem.h>
#include <Kernel/VirtualFileSystem.h>
#define PAGE_ROUND_UP(x) ((((dword)(x)) + PAGE_SIZE-1) & (~(PAGE_SIZE-1)))