V7M/src/libc/stdio/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);
	return(putchar('\n'));
}