USG_PG3/usr/source/portc2/puts.c

Compare this file to the similar file:
Show the results in this format:

puts(str)
char *str;
{
auto char *p,c;
auto int f;
extern int cout;
p = str;
while( (c = *p++)!= '\0') cputc(c,cout);
cputc('\n',cout);
return(str);
}