summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/sshpty.c
diff options
context:
space:
mode:
authorstevesk <stevesk@openbsd.org>2006-07-09 15:15:10 +0000
committerstevesk <stevesk@openbsd.org>2006-07-09 15:15:10 +0000
commit089803ec38bc406458d7a22bd9f3c76b2270cf3f (patch)
tree8512763198790fa16a0a897b457b37dd451fcb57 /usr.bin/ssh/sshpty.c
parentUse sigaction() instead of signal() in the parent and use the (diff)
downloadwireguard-openbsd-089803ec38bc406458d7a22bd9f3c76b2270cf3f.tar.xz
wireguard-openbsd-089803ec38bc406458d7a22bd9f3c76b2270cf3f.zip
move #include <fcntl.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/sshpty.c')
-rw-r--r--usr.bin/ssh/sshpty.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/sshpty.c b/usr.bin/ssh/sshpty.c
index b01c8ca61b1..90f5da674ae 100644
--- a/usr.bin/ssh/sshpty.c
+++ b/usr.bin/ssh/sshpty.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshpty.c,v 1.21 2006/07/06 16:03:53 stevesk Exp $ */
+/* $OpenBSD: sshpty.c,v 1.22 2006/07/09 15:15:11 stevesk Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -18,6 +18,7 @@
#include <sys/types.h>
#include <sys/stat.h>
+#include <fcntl.h>
#include <grp.h>
#include <paths.h>
#include <pwd.h>