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
Родитель f8d552dde5
Коммит f317f8b149
2 изменённых файлов: 12 добавлений и 0 удалений

Просмотреть файл

@ -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.

Просмотреть файл

@ -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.