mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 05:37:44 +00:00
LibC: Stub out tcsendbreak(..) and tcdrain(..)
They are required for gdb to build.
This commit is contained in:
parent
6e2a82df13
commit
7828d4254e
2 changed files with 16 additions and 0 deletions
|
@ -10,8 +10,10 @@
|
|||
|
||||
__BEGIN_DECLS
|
||||
|
||||
int tcdrain(int fd);
|
||||
int tcgetattr(int fd, struct termios*);
|
||||
int tcsetattr(int fd, int optional_actions, const struct termios*);
|
||||
int tcsendbreak(int fd, int duration);
|
||||
int tcflow(int fd, int action);
|
||||
int tcflush(int fd, int queue_selector);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue