summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/sshpty.h
diff options
context:
space:
mode:
authorstevesk <stevesk@openbsd.org>2006-07-06 16:03:53 +0000
committerstevesk <stevesk@openbsd.org>2006-07-06 16:03:53 +0000
commitd57915d69443c05285a93f5aa984774494819f6b (patch)
tree8d09aa8749ddb8f8b18744a56a6bce60525fec6b /usr.bin/ssh/sshpty.h
parentargh, again i forgot a file. sorry (diff)
downloadwireguard-openbsd-d57915d69443c05285a93f5aa984774494819f6b.tar.xz
wireguard-openbsd-d57915d69443c05285a93f5aa984774494819f6b.zip
move #include <pwd.h> out of includes.h; ok markus@
Diffstat (limited to 'usr.bin/ssh/sshpty.h')
-rw-r--r--usr.bin/ssh/sshpty.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/ssh/sshpty.h b/usr.bin/ssh/sshpty.h
index f61a5e71eed..a7b33747424 100644
--- a/usr.bin/ssh/sshpty.h
+++ b/usr.bin/ssh/sshpty.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshpty.h,v 1.8 2006/03/25 22:22:43 djm Exp $ */
+/* $OpenBSD: sshpty.h,v 1.9 2006/07/06 16:03:53 stevesk Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -17,6 +17,9 @@
#ifndef SSHPTY_H
#define SSHPTY_H
+#include <sys/types.h>
+
+#include <pwd.h>
#include <termios.h>
struct termios get_saved_tio(void);