* cygcheck.cc: Include sys/time.h rather than time.h to avoid a compiler error.

This commit is contained in:
Christopher Faylor 2002-09-19 03:48:19 +00:00
parent 5bf785a017
commit 468b26c591
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2002-09-18 Christopher Faylor <cgf@redhat.com>
* cygcheck.cc: Include sys/time.h rather than time.h to avoid a
compiler error.
2002-09-17 Christopher Faylor <cgf@redhat.com>
* cygcheck.cc: Reorder includes to avoid compiler error.

View File

@ -11,7 +11,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <sys/time.h>
#include <ctype.h>
#include <windows.h>
#include "cygwin/include/sys/cygwin.h"