Add include files to prevent warnings on some (HPUX) systems.

This commit is contained in:
Daniel Stenberg 2003-03-12 08:54:45 +00:00
parent f8d552dde5
commit f317f8b149
2 changed files with 12 additions and 0 deletions

View File

@ -1,5 +1,11 @@
#include "test.h"
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif
#include <sys/time.h>
#include <sys/types.h>
/*
* Source code in here hugely as reported in bug report 651460 by
* Christopher R. Palmer.

View File

@ -1,5 +1,11 @@
#include "test.h"
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif
#include <sys/time.h>
#include <sys/types.h>
/*
* Source code in here hugely as reported in bug report 651464 by
* Christopher R. Palmer.