summaryrefslogtreecommitdiff
path: root/sshtty.c
diff options
context:
space:
mode:
Diffstat (limited to 'sshtty.c')
-rw-r--r--sshtty.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/sshtty.c b/sshtty.c
index 0b17c3e2d..04567669b 100644
--- a/sshtty.c
+++ b/sshtty.c
@@ -1,3 +1,4 @@
1/* $OpenBSD: sshtty.c,v 1.12 2006/08/03 03:34:42 deraadt Exp $ */
1/* 2/*
2 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -35,10 +36,13 @@
35 */ 36 */
36 37
37#include "includes.h" 38#include "includes.h"
38RCSID("$OpenBSD: sshtty.c,v 1.6 2004/05/08 00:01:37 deraadt Exp $"); 39
40#include <sys/types.h>
41#include <stdio.h>
42#include <termios.h>
43#include <pwd.h>
39 44
40#include "sshpty.h" 45#include "sshpty.h"
41#include "log.h"
42 46
43static struct termios _saved_tio; 47static struct termios _saved_tio;
44static int _in_raw_mode = 0; 48static int _in_raw_mode = 0;