mirror of
https://github.com/RGBCube/serenity
synced 2025-07-24 22:07:34 +00:00
Compat work towards porting vim.
This commit is contained in:
parent
2e5b9d318f
commit
a356746d04
17 changed files with 200 additions and 77 deletions
|
@ -39,9 +39,14 @@ int tcflush(int fd, int queue_selector)
|
|||
assert(false);
|
||||
}
|
||||
|
||||
speed_t cfgetospeed(const struct termios*)
|
||||
speed_t cfgetispeed(const struct termios* tp)
|
||||
{
|
||||
assert(false);
|
||||
return tp->c_ispeed;
|
||||
}
|
||||
|
||||
speed_t cfgetospeed(const struct termios* tp)
|
||||
{
|
||||
return tp->c_ospeed;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue