#include "CharacterDevice.h" #include CharacterDevice::~CharacterDevice() { } RetainPtr CharacterDevice::open(int options) { return VFS::the().open(*this, options); } int CharacterDevice::ioctl(Process&, unsigned, unsigned) { return -ENOTTY; }