From: Christopher Faylor Date: Thu, 2 Aug 2007 14:30:17 +0000 (+0000) Subject: * lib/cygwin_attach_dll.c: Fix compiler warning. X-Git-Tag: binutils-2_18-branchpoint~6 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=ba5f4d5087b34e9b6e2db5b5d189e6109e012c01;p=newlib-cygwin.git * lib/cygwin_attach_dll.c: Fix compiler warning. * lib/cygwin_crt0.c: Ditto. --- diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 9a7c639f5..8359500b7 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,8 @@ +2007-08-02 Christopher Faylor + + * lib/cygwin_attach_dll.c: Fix compiler warning. + * lib/cygwin_crt0.c: Ditto. + 2007-08-02 Christopher Faylor * dcrt0.cc (codepage_type): Remove definition. diff --git a/winsup/cygwin/lib/cygwin_attach_dll.c b/winsup/cygwin/lib/cygwin_attach_dll.c index 3788bdf9c..49bb9256d 100644 --- a/winsup/cygwin/lib/cygwin_attach_dll.c +++ b/winsup/cygwin/lib/cygwin_attach_dll.c @@ -10,6 +10,8 @@ details. */ #undef __INSIDE_CYGWIN__ #include +#include /* Needed since call to sys/time.h via sys/cygwin.h + complains otherwise */ #include #include "crt0.h" diff --git a/winsup/cygwin/lib/cygwin_crt0.c b/winsup/cygwin/lib/cygwin_crt0.c index fb2a84b18..8dce9f489 100644 --- a/winsup/cygwin/lib/cygwin_crt0.c +++ b/winsup/cygwin/lib/cygwin_crt0.c @@ -10,6 +10,8 @@ details. */ #undef __INSIDE_CYGWIN__ #include +#include /* Needed since call to sys/time.h via sys/cygwin.h + complains otherwise */ #include #include #include "crt0.h"