xref: /csrg-svn/old/lib2648/outstr.c (revision 11486)
1 /*	outstr.c	4.1	83/03/09	*/
2 /*
3  * Low level output routines
4  */
5 
6 #include "2648.h"
7 
8 outstr(str)
9 char *str;
10 {
11 	while (*str)
12 		outchar(*str++);
13 }
14