update for HEAD-2003091401
[reactos.git] / lib / msvcrt / time / wctime.c
index 08ad9cd..3d3f2fe 100644 (file)
@@ -32,6 +32,9 @@
 #include "tzfile.h"
 
 
+/*
+ * @implemented
+ */
 wchar_t* _wasctime(const struct tm* timeptr)
 {
 #ifdef __GNUC__
@@ -63,6 +66,9 @@ wchar_t* _wasctime(const struct tm* timeptr)
 }
 
 
+/*
+ * @implemented
+ */
 wchar_t* _wctime(const time_t* const timep)
 {
     return _wasctime(localtime(timep));