aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2005-07-31 12:40:54 +0000
committerMatthias Andree <matthias.andree@gmx.de>2005-07-31 12:40:54 +0000
commita34f32bbd8379b20fa8d43afdb9c7d551157577b (patch)
treeed72337366666408c04751991190ba60653821d2
parent4dcdfe2a5d44697fc6abb7e9ac1e4e25df4da706 (diff)
downloadfetchmail-a34f32bbd8379b20fa8d43afdb9c7d551157577b.tar.gz
fetchmail-a34f32bbd8379b20fa8d43afdb9c7d551157577b.tar.bz2
fetchmail-a34f32bbd8379b20fa8d43afdb9c7d551157577b.zip
Add missing #include directives to fix warnings.
svn path=/trunk/; revision=4205
-rw-r--r--ipv6-connect.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/ipv6-connect.c b/ipv6-connect.c
index 6537984d..ce9866e8 100644
--- a/ipv6-connect.c
+++ b/ipv6-connect.c
@@ -43,6 +43,10 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <errno.h>
#include <netdb.h>
#include <signal.h>
+#include <string.h>
+#ifdef HAVE_UNISTD_H
+#include <unistd.h>
+#endif
/* This patch, supplying SA_LEN if it's undefined, is from Red Hat */
#ifndef SA_LEN