update for HEAD-2003021201
[reactos.git] / lib / crtdll / stdio / puts.c
1 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
2 #include <windows.h>
3 #include <msvcrt/stdio.h>
4 #include <msvcrt/io.h>
5 #include <msvcrt/string.h>
6
7 #undef putchar
8
9
10 int puts(const char *s)
11 {
12     int c;
13
14     while ((c = *s++))
15         putchar(c);
16     return putchar('\n');
17
18 }