diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2005-10-12 00:28:11 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2005-10-12 00:28:11 +0000 |
commit | 1a5c68c8d93eedfbddd0d59c5a827abc96f46410 (patch) | |
tree | 52080ff7ef829f54e54b28fc50ee4be17362bc06 | |
parent | 339195bf127d273d8acc8a1e6eacc0261c3056f8 (diff) | |
download | newlib-1a5c68c8d93eedfbddd0d59c5a827abc96f46410.zip newlib-1a5c68c8d93eedfbddd0d59c5a827abc96f46410.tar.gz newlib-1a5c68c8d93eedfbddd0d59c5a827abc96f46410.tar.bz2 |
* include/time.h (_time64): Correct prototype.
-rw-r--r-- | winsup/mingw/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/mingw/include/time.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/mingw/ChangeLog b/winsup/mingw/ChangeLog index cef73d7..2cdd5c4 100644 --- a/winsup/mingw/ChangeLog +++ b/winsup/mingw/ChangeLog @@ -1,3 +1,7 @@ +2005-10-12 Danny Smith <dannysmith@users.sourceforge.net> + + * include/time.h (_time64): Correct prototype. + 2005-10-08 Danny Smith <dannysmith@users.sourceforge.net> * mingwex/fegetenv.c (fegetenv): Restore exception masks. diff --git a/winsup/mingw/include/time.h b/winsup/mingw/include/time.h index 723eb99..2b41a8c 100644 --- a/winsup/mingw/include/time.h +++ b/winsup/mingw/include/time.h @@ -116,7 +116,7 @@ _CRTIMP char* __cdecl _strtime(char*); /* These require newer versions of msvcrt.dll (6.10 or higher). */ #if __MSVCRT_VERSION__ >= 0x0601 -_CRTIMP __time64_t __cdecl _time64( __time64_t); +_CRTIMP __time64_t __cdecl _time64( __time64_t*); _CRTIMP __time64_t __cdecl _mktime64 (struct tm*); _CRTIMP char* __cdecl _ctime64 (const __time64_t*); _CRTIMP struct tm* __cdecl _gmtime64 (const __time64_t*); |