Commit 261d7418 authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

msvcrt: Change return type of _ctime32_s and _ctime64_s to errno_t.

parent ae8797c8
...@@ -1715,7 +1715,7 @@ char * CDECL _ctime64(const __time64_t *time) ...@@ -1715,7 +1715,7 @@ char * CDECL _ctime64(const __time64_t *time)
/********************************************************************* /*********************************************************************
* _ctime64_s (MSVCRT.@) * _ctime64_s (MSVCRT.@)
*/ */
int CDECL _ctime64_s(char *res, size_t len, const __time64_t *time) errno_t CDECL _ctime64_s(char *res, size_t len, const __time64_t *time)
{ {
struct tm *t; struct tm *t;
...@@ -1744,7 +1744,7 @@ char * CDECL _ctime32(const __time32_t *time) ...@@ -1744,7 +1744,7 @@ char * CDECL _ctime32(const __time32_t *time)
/********************************************************************* /*********************************************************************
* _ctime32_s (MSVCRT.@) * _ctime32_s (MSVCRT.@)
*/ */
int CDECL _ctime32_s(char *res, size_t len, const __time32_t *time) errno_t CDECL _ctime32_s(char *res, size_t len, const __time32_t *time)
{ {
struct tm *t; struct tm *t;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment