From 50d451e30734e96459b2a49c5e4dd34dc461e611 Mon Sep 17 00:00:00 2001 From: Guenter Knauf Date: Thu, 8 Sep 2011 13:53:05 +0200 Subject: [PATCH] Fix for systems which need sys/select.h. --- example/scp_write_nonblock.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/example/scp_write_nonblock.c b/example/scp_write_nonblock.c index 91209bc..0d59ef6 100644 --- a/example/scp_write_nonblock.c +++ b/example/scp_write_nonblock.c @@ -17,6 +17,9 @@ #ifdef HAVE_NETINET_IN_H # include #endif +#ifdef HAVE_SYS_SELECT_H +# include +#endif # ifdef HAVE_UNISTD_H #include #endif