Don't depend on <signal.h> to include <sys/time.h>, instead include

<sys/time.h> directly.  This is mostly bogus since CLOCK_REALTIME
should be defined in <time.h>, which these files already include.
This commit is contained in:
Mike Barcroft 2002-10-06 21:46:04 +00:00
parent 6e84ba78c1
commit 1d631f7ef1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=104581
2 changed files with 2 additions and 0 deletions

View File

@ -43,6 +43,7 @@ static const char rcsid[] =
#include <sys/param.h>
#include <sys/ioctl.h>
#include <sys/pioctl.h>
#include <sys/time.h>
#include <err.h>
#include <errno.h>

View File

@ -41,6 +41,7 @@ static const char rcsid[] =
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/time.h>
#include <sys/un.h>
#include <netinet/in.h>
#include <arpa/inet.h>