puts(str)
char	*str;
{
	while (*str) {
/* COMPILER BUG!!!	putchar(*str++);
 */
		putchar(*str);
		str++;
	}
}
