summaryrefslogtreecommitdiff
path: root/sshpty.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-03-15 11:11:28 +1100
committerDamien Miller <djm@mindrot.org>2006-03-15 11:11:28 +1100
commit99bd21e3fe8f8312cb71c1ebf23c34a82a861429 (patch)
tree998eb58d19d512ff72278df354af214248b95f7c /sshpty.c
parent2eb6340ddd2d1326cb3fd708be21b1bce7355e49 (diff)
downloadopenssh-git-99bd21e3fe8f8312cb71c1ebf23c34a82a861429.tar.gz
- 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.c')
-rw-r--r--sshpty.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sshpty.c b/sshpty.c
index 36788c4d..8ce8ee46 100644
--- a/sshpty.c
+++ b/sshpty.c
@@ -12,7 +12,9 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: sshpty.c,v 1.12 2004/06/21 17:36:31 avsm Exp $");
+RCSID("$OpenBSD: sshpty.c,v 1.13 2006/02/07 01:42:00 stevesk Exp $");
+
+#include <termios.h>
#ifdef HAVE_UTIL_H
# include <util.h>