update for HEAD-2003091401
[reactos.git] / lib / crtdll / stdio / perror.c
index fdde0bb..0ad0d79 100644 (file)
@@ -1,7 +1,7 @@
 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
-#include <crtdll/stdio.h>
-#include <crtdll/string.h>
-#include <crtdll/errno.h>
+#include <msvcrt/stdio.h>
+#include <msvcrt/string.h>
+#include <msvcrt/errno.h>
 
 
 #ifdef perror
@@ -9,8 +9,10 @@
 void perror(const char *s);
 #endif
 
-void
-perror(const char *s)
+/*
+ * @implemented
+ */
+void perror(const char *s)
 {
  
   fprintf(stderr, "%s: %s\n", s, _strerror(NULL));