update for HEAD-2003091401
[reactos.git] / lib / msvcrt / stdio / perror.c
index 7606a1e..369e505 100644 (file)
@@ -9,11 +9,17 @@
 void perror(const char *s);
 #endif
 
+/*
+ * @implemented
+ */
 void perror(const char *s)
 {
   fprintf(stderr, "%s: %s\n", s, _strerror(NULL));
 }
 
+/*
+ * @implemented
+ */
 void _wperror(const wchar_t *s)
 {
   fwprintf(stderr, L"%s: %S\n", s, _strerror(NULL));