summaryrefslogtreecommitdiffstats
path: root/sshpty.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-03-15 01:11:28 +0100
committerDamien Miller <djm@mindrot.org>2006-03-15 01:11:28 +0100
commit99bd21e3fe8f8312cb71c1ebf23c34a82a861429 (patch)
tree998eb58d19d512ff72278df354af214248b95f7c /sshpty.h
parent - stevesk@cvs.openbsd.org 2006/02/07 01:18:09 (diff)
downloadopenssh-99bd21e3fe8f8312cb71c1ebf23c34a82a861429.tar.xz
openssh-99bd21e3fe8f8312cb71c1ebf23c34a82a861429.zip
- stevesk@cvs.openbsd.org 2006/02/07 01:42:00
[channels.c clientloop.c clientloop.h includes.h packet.h] [serverloop.c sshpty.c sshpty.h sshtty.c ttymodes.c] move #include <termios.h> out of includes.h; ok markus@
Diffstat (limited to 'sshpty.h')
-rw-r--r--sshpty.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/sshpty.h b/sshpty.h
index c0678de22..a7de73700 100644
--- a/sshpty.h
+++ b/sshpty.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshpty.h,v 1.5 2004/05/08 00:01:37 deraadt Exp $ */
+/* $OpenBSD: sshpty.h,v 1.6 2006/02/07 01:42:00 stevesk Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -17,6 +17,8 @@
#ifndef SSHPTY_H
#define SSHPTY_H
+#include <termios.h>
+
struct termios get_saved_tio(void);
void leave_raw_mode(void);
void enter_raw_mode(void);