summaryrefslogtreecommitdiff
path: root/sshpty.c
diff options
context:
space:
mode:
Diffstat (limited to 'sshpty.c')
-rw-r--r--sshpty.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/sshpty.c b/sshpty.c
index 719a79303..79c62ee9c 100644
--- a/sshpty.c
+++ b/sshpty.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sshpty.c,v 1.25 2006/07/22 20:48:23 stevesk Exp $ */ 1/* $OpenBSD: sshpty.c,v 1.26 2006/08/03 03:34:42 deraadt Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -14,8 +14,8 @@
14 14
15#include "includes.h" 15#include "includes.h"
16 16
17#include <sys/ioctl.h>
18#include <sys/types.h> 17#include <sys/types.h>
18#include <sys/ioctl.h>
19#include <sys/stat.h> 19#include <sys/stat.h>
20#include <signal.h> 20#include <signal.h>
21 21
@@ -26,11 +26,12 @@
26# include <paths.h> 26# include <paths.h>
27#endif 27#endif
28#include <pwd.h> 28#include <pwd.h>
29#include <stdarg.h>
29#include <string.h> 30#include <string.h>
30#include <termios.h> 31#include <termios.h>
31#ifdef HAVE_UTIL_H 32#ifdef HAVE_UTIL_H
32# include <util.h> 33# include <util.h>
33#endif /* HAVE_UTIL_H */ 34#endif
34#include <unistd.h> 35#include <unistd.h>
35 36
36#include "sshpty.h" 37#include "sshpty.h"