https://git.reactos.org/?p=reactos.git;a=commitdiff;h=f96407441c97e49609740…
commit f96407441c97e49609740e6aaa04f375b63e0547
Author: Timo Kreuzer <timo.kreuzer(a)reactos.org>
AuthorDate: Sun Apr 28 22:05:32 2019 +0200
Commit: Timo Kreuzer <timo.kreuzer(a)reactos.org>
CommitDate: Sat Jul 20 13:56:18 2019 +0200
[CRT] Remove _wctime_s from time.h
---
sdk/include/crt/time.h | 2 --
1 file changed, 2 deletions(-)
diff --git a/sdk/include/crt/time.h b/sdk/include/crt/time.h
index e259e540b4f..d712a396372 100644
--- a/sdk/include/crt/time.h
+++ b/sdk/include/crt/time.h
@@ -388,10 +388,8 @@ extern "C" {
#ifdef _USE_32BIT_TIME_T
/* Do it like this to be compatible to msvcrt.dll on 32 bit windows XP and before */
__CRT_INLINE wchar_t *__cdecl _wctime(const time_t *_Time) { return _wctime32(_Time); }
-__CRT_INLINE errno_t __cdecl _wctime_s(wchar_t *_Buffer, size_t _SizeInWords,const
__time32_t *_Time) { return _wctime32_s(_Buffer, _SizeInWords, _Time); }
#else
__CRT_INLINE wchar_t *__cdecl _wctime(const time_t *_Time) { return _wctime64(_Time); }
-__CRT_INLINE errno_t __cdecl _wctime_s(wchar_t *_Buffer, size_t _SizeInWords,const
time_t *_Time) { return _wctime64_s(_Buffer, _SizeInWords, _Time); }
#endif
#endif