diff options
Diffstat (limited to 'gdb/serial.c')
-rw-r--r-- | gdb/serial.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/serial.c b/gdb/serial.c index 954d22a..7c8fbc2 100644 --- a/gdb/serial.c +++ b/gdb/serial.c @@ -493,6 +493,12 @@ serial_get_tty_state (struct serial *scb) return scb->ops->get_tty_state (scb); } +serial_ttystate +serial_copy_tty_state (struct serial *scb, serial_ttystate ttystate) +{ + return scb->ops->copy_tty_state (scb, ttystate); +} + int serial_set_tty_state (struct serial *scb, serial_ttystate ttystate) { |