Kernel: add is_tty() to inode

This commit is contained in:
Bananymous
2023-07-24 22:19:59 +03:00
parent f76d921e25
commit cd64c1cfec
2 changed files with 2 additions and 0 deletions

View File

@@ -109,6 +109,7 @@ namespace Kernel
public:
virtual dev_t rdev() const override { return m_rdev; }
virtual bool is_tty() const override { return true; }
private:
dev_t m_rdev;