Luna/kernel/src/fs/VFS.cpp

12 lines
149 B
C++

#include "fs/VFS.h"
namespace VFS
{
SharedPtr<FileSystem> root_fs;
Inode& root_inode()
{
return root_fs->root_inode();
}
}