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