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