diff options
author | Christopher Faylor <me@cgf.cx> | 2007-08-02 14:30:17 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2007-08-02 14:30:17 +0000 |
commit | ba5f4d5087b34e9b6e2db5b5d189e6109e012c01 (patch) | |
tree | 1252393a451159da52d08b184ddd71153a81fe47 /winsup | |
parent | de16566998f1748f12cd4a5650bdd57bd6a18b89 (diff) | |
download | cygnal-ba5f4d5087b34e9b6e2db5b5d189e6109e012c01.tar.gz cygnal-ba5f4d5087b34e9b6e2db5b5d189e6109e012c01.tar.bz2 cygnal-ba5f4d5087b34e9b6e2db5b5d189e6109e012c01.zip |
* lib/cygwin_attach_dll.c: Fix compiler warning.
* lib/cygwin_crt0.c: Ditto.
Diffstat (limited to 'winsup')
-rw-r--r-- | winsup/cygwin/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/cygwin/lib/cygwin_attach_dll.c | 2 | ||||
-rw-r--r-- | winsup/cygwin/lib/cygwin_crt0.c | 2 |
3 files changed, 9 insertions, 0 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 9a7c639f5..8359500b7 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,5 +1,10 @@ 2007-08-02 Christopher Faylor <me+cygwin@cgf.cx> + * lib/cygwin_attach_dll.c: Fix compiler warning. + * lib/cygwin_crt0.c: Ditto. + +2007-08-02 Christopher Faylor <me+cygwin@cgf.cx> + * dcrt0.cc (codepage_type): Remove definition. * strfuncs.cc: Move it here. New file with bits of miscfuncs.cc. * miscfuncs.cc: Remove wide character stuff. 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 <windows.h> +#include <time.h> /* Needed since call to sys/time.h via sys/cygwin.h + complains otherwise */ #include <sys/cygwin.h> #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 <windows.h> +#include <time.h> /* Needed since call to sys/time.h via sys/cygwin.h + complains otherwise */ #include <sys/cygwin.h> #include <stdlib.h> #include "crt0.h" |