ladybird/VirtualFileSystem/CharacterDevice.cpp

11 lines
180 B
C++
Raw Normal View History

#include "CharacterDevice.h"
CharacterDevice::~CharacterDevice()
{
}
2018-11-07 11:37:54 +01:00
RetainPtr<FileDescriptor> CharacterDevice::open(int options)
{
return VFS::the().open(*this, options);
}