From d5df18a14fcb8591496389dbe9d17d78c551f42a Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Mon, 20 Dec 2010 15:49:29 +0100 Subject: build: Fixed build warning on FreeBSD. --- src/packet1.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src') diff --git a/src/packet1.c b/src/packet1.c index d4b2eae..3bf4bbc 100644 --- a/src/packet1.c +++ b/src/packet1.c @@ -19,6 +19,10 @@ * MA 02111-1307, USA. */ +#ifndef _WIN32 +#include +#endif /* _WIN32 */ + #include "config.h" #include "libssh/priv.h" #include "libssh/ssh1.h" @@ -27,6 +31,7 @@ #include "libssh/buffer.h" #include "libssh/socket.h" #include "libssh/kex.h" + #ifdef WITH_SSH1 ssh_packet_callback default_packet_handlers1[]= { -- cgit