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