SysIII/usr/src/lib/libc/pdp11/stdio/fputs.c

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

/*LINTLIBRARY*/
#include	<stdio.h>

fputs(s, iop)
register char *s;
register FILE *iop;
{
	register r;
	register c;

	while (c = *s++)
		r = putc(c, iop);
	return(r);
}