update for HEAD-2003021201
[reactos.git] / lib / crtdll / stdio / puts.c
index 11d6eb6..008a6f5 100644 (file)
@@ -1,17 +1,18 @@
 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
-#include <crtdll/stdio.h>
-#include <crtdll/io.h>
 #include <windows.h>
-#include <crtdll/string.h>
+#include <msvcrt/stdio.h>
+#include <msvcrt/io.h>
+#include <msvcrt/string.h>
 
 #undef putchar
-int
-puts(const char *s)
+
+
+int puts(const char *s)
 {
-       
-  int c;
-  while ((c = *s++))
-    putchar(c);
-  return putchar('\n');
+    int c;
+
+    while ((c = *s++))
+        putchar(c);
+    return putchar('\n');
 
 }