mirror of
https://github.com/usatiuk/ficus.git
synced 2025-10-29 00:27:52 +01:00
22 lines
376 B
C++
22 lines
376 B
C++
//
|
|
// Created by Stepan Usatiuk on 24.02.2024.
|
|
//
|
|
|
|
#include "VFSGlobals.hpp"
|
|
Vector<DirEntry> RootNode::children() {
|
|
assert(false);
|
|
return {};
|
|
}
|
|
ino_t RootNode::mkdir(const String &name) {
|
|
assert(false);
|
|
return -1;
|
|
}
|
|
ino_t RootNode::mkfile(const String &name) {
|
|
assert(false);
|
|
return -1;
|
|
}
|
|
|
|
|
|
RootNode VFSGlobals::root;
|
|
MountTable VFSGlobals::mounts;
|