summaryrefslogtreecommitdiff
path: root/pty.c
diff options
context:
space:
mode:
Diffstat (limited to 'pty.c')
-rw-r--r--pty.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/pty.c b/pty.c
index 440994b51..141ef7d35 100644
--- a/pty.c
+++ b/pty.c
@@ -14,7 +14,12 @@ Allocating a pseudo-terminal, and making it the controlling tty.
14*/ 14*/
15 15
16#include "includes.h" 16#include "includes.h"
17RCSID("$Id: pty.c,v 1.1 1999/10/27 03:42:44 damien Exp $"); 17RCSID("$Id: pty.c,v 1.2 1999/11/08 04:30:59 damien Exp $");
18
19#ifdef HAVE_PTY_H
20/* Unfortunate namespace collision */
21#include <pty.h>
22#endif /* HAVE_PTY_H */
18 23
19#include "pty.h" 24#include "pty.h"
20#include "ssh.h" 25#include "ssh.h"