* include/time.h (__time64_t): Add missing ';'.

This commit is contained in:
Danny Smith 2004-07-19 22:51:38 +00:00
parent bb3be323ba
commit f451556720
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2004-07-19 Danny Smith <dannysmith@users.sourceforge.net>
* include/time.h (__time64_t): Add missing ';'.
2004-07-17 Danny Smith <dannysmith@users.sourceforge.net>
* include/time.h (wcsftime): Move out of !__STRICT_ANSI

View File

@ -44,7 +44,7 @@ typedef long time_t;
#ifndef __STRICT_ANSI__
/* A 64-bit time_t to get to Y3K */
#ifndef _TIME64_T_DEFINED
typedef __int64 __time64_t
typedef __int64 __time64_t;
#define _TIME64_T_DEFINED
#endif
#endif