4.1cBSD/usr/src/usr.lib/lib2648/outstr.c

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

/*	outstr.c	4.1	83/03/09	*/
/*
 * Low level output routines
 */

#include "2648.h"

outstr(str)
char *str;
{
	while (*str)
		outchar(*str++);
}