aboutsummaryrefslogtreecommitdiff
path: root/crypto/openssh/pty.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/openssh/pty.c')
-rw-r--r--crypto/openssh/pty.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/crypto/openssh/pty.c b/crypto/openssh/pty.c
index 86da668286b2..c3545291f147 100644
--- a/crypto/openssh/pty.c
+++ b/crypto/openssh/pty.c
@@ -11,12 +11,17 @@
*
* Allocating a pseudo-terminal, and making it the controlling tty.
*
+ * $FreeBSD$
*/
#include "includes.h"
RCSID("$Id: pty.c,v 1.12 2000/02/15 16:52:58 markus Exp $");
+#ifdef __FreeBSD__
+#include <libutil.h>
+#else
#include <util.h>
+#endif
#include "pty.h"
#include "ssh.h"