xref: /openbsd/sys/arch/alpha/stand/puts.c (revision 73471bf0)
1 /*	$OpenBSD: puts.c,v 1.3 1996/10/30 22:40:35 niklas Exp $	*/
2 
3 
4 void
5 puts(s)
6 	char *s;
7 {
8 
9 	while (*s)
10 		putchar(*s++);
11 }
12