mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 19:29:16 +00:00
17 lines
294 B
C++
17 lines
294 B
C++
#include "CharacterDevice.h"
|
|
#include <LibC/errno_numbers.h>
|
|
|
|
CharacterDevice::~CharacterDevice()
|
|
{
|
|
}
|
|
|
|
RetainPtr<FileDescriptor> CharacterDevice::open(int options)
|
|
{
|
|
return VFS::the().open(*this, options);
|
|
}
|
|
|
|
int CharacterDevice::ioctl(Process&, unsigned, unsigned)
|
|
{
|
|
return -ENOTTY;
|
|
}
|