12 lines
145 B
C
12 lines
145 B
C
/* $Id$ */
|
|
#include <stdio.h>
|
|
|
|
puts(s)
|
|
register char *s;
|
|
{
|
|
register FILE *file = stdout;
|
|
while ( *s )
|
|
putc(*s++,file);
|
|
putc('\n', file);
|
|
}
|