blob: cdfe7f89f24afd3ce51a2108f147d280b0a65b85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "filesystem/filesystem.hpp"
#include "filesystem/inode.hpp"
namespace filesystem
{
auto filesystem::root_inode() const -> inode const &
{
return m_root_inode;
}
} // namespace filesystem
|