From 2a1cb323f7d88331c83980e2a522cf470a0f0ef5 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Fri, 14 Feb 2014 10:32:30 +0100 Subject: examples: Add missing include on FreeBSD. --- examples/samplesshd-tty.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/samplesshd-tty.c b/examples/samplesshd-tty.c index 05d7c644..5e9e56ce 100644 --- a/examples/samplesshd-tty.c +++ b/examples/samplesshd-tty.c @@ -31,6 +31,9 @@ clients must be made or how a client should react. #ifdef HAVE_UTIL_H #include #endif +#ifdef HAVE_LIBUTIL_H +#include +#endif #ifdef HAVE_TERMIOS_H #include #endif -- cgit