add EGP
[unix-history] / usr / src / old / lib2648 / outstr.c
/* outstr.c 4.1 83/03/09 */
/*
* Low level output routines
*/
#include "2648.h"
outstr(str)
char *str;
{
while (*str)
outchar(*str++);
}