blob: b249921bad390ab8d93efeda1ce70863194ad2bf (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "CharacterDevice.h"
CharacterDevice::~CharacterDevice()
{
}
OwnPtr<FileHandle> CharacterDevice::open(int options)
{
return VirtualFileSystem::the().open(*this, options);
}
|