AUSAM/source/libS/puts.c

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

#include	"stdio.h"

puts(s)
register char *s;
{
	register c;

	while (c = *s++)
		putchar(c);
	putchar('\n');
}