update for HEAD-2003091401
[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 /*
11  * @implemented
12  */
13 int puts(const char *s)
14 {
15     int c;
16
17     while ((c = *s++))
18         putchar(c);
19     return putchar('\n');
20
21 }