OSDN Git Service

Correct mistyped __MINGW_NOTHROW macro.
authorEarnie Boyd <earnie@users.sourceforge.net>
Tue, 28 May 2013 16:59:47 +0000 (12:59 -0400)
committerEarnie Boyd <earnie@users.sourceforge.net>
Tue, 28 May 2013 16:59:47 +0000 (12:59 -0400)
ChangeLog
include/time.h

index a1923a9..90e68b5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
 2013-05-28  Earnie Boyd  <earnie@users.sourceforge.net>
 
        * include/time.h: Correct use of MSVCRT_VERSION.
+       Correct mistyped __MINGW_NOTHROW macro.
 
 2013-05-27  Earnie Boyd  <earnie@users.sourceforge.net>
 
index 571b14e..1161a04 100644 (file)
@@ -188,12 +188,12 @@ _CRTALIAS struct tm*   __cdecl __MINGW_NOTHROW    localtime (const time_t* _v)
 #endif /* _USE_32BIT_TIME_T */
 
 #else /* MSVCRT_VERSION < 800 */
-_CRTIMP time_t     __cdecl __MINGW32_NOTHROW time       (time_t*);
-_CRTIMP double     __cdecl __MINGW32_NOTHROW difftime   (time_t, time_t);
-_CRTIMP time_t     __cdecl __MINGW32_NOTHROW mktime     (struct tm*);
-_CRTIMP char*      __cdecl __MINGW32_NOTRHOW ctime      (const time_t*);
-_CRTIMP struct tm* __cdecl __MINGW32_NOTHROW gmtime     (const time_t*);
-_CRTIMP struct tm* __cdecl __MINGW32_NOTHROW localtime  (const time_t*);
+_CRTIMP time_t     __cdecl __MINGW_NOTHROW time       (time_t*);
+_CRTIMP double     __cdecl __MINGW_NOTHROW difftime   (time_t, time_t);
+_CRTIMP time_t     __cdecl __MINGW_NOTHROW mktime     (struct tm*);
+_CRTIMP char*      __cdecl __MINGW_NOTHROW ctime      (const time_t*);
+_CRTIMP struct tm* __cdecl __MINGW_NOTHROW gmtime     (const time_t*);
+_CRTIMP struct tm* __cdecl __MINGW_NOTHROW localtime  (const time_t*);
 #endif /* MSVCRT_VERSION >= 800 */
 
 /*