mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-09 16:42:10 +02:00
11 lines
180 B
C++
11 lines
180 B
C++
#include "CharacterDevice.h"
|
|
|
|
CharacterDevice::~CharacterDevice()
|
|
{
|
|
}
|
|
|
|
RetainPtr<FileDescriptor> CharacterDevice::open(int options)
|
|
{
|
|
return VFS::the().open(*this, options);
|
|
}
|