update for HEAD-2003021201
[reactos.git] / lib / crtdll / stdio / perror.c
index fdde0bb..a959151 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,7 @@
 void perror(const char *s);
 #endif
 
-void
-perror(const char *s)
+void perror(const char *s)
 {
  
   fprintf(stderr, "%s: %s\n", s, _strerror(NULL));