NetBSD/sys/arch/alpha/stand/bootxx/puts.c

15 lines
172 B
C
Raw Normal View History

1998-01-05 10:02:46 +03:00
/* $NetBSD: puts.c,v 1.3 1998/01/05 07:02:46 perry Exp $ */
1997-09-06 18:08:27 +04:00
#include <lib/libsa/stand.h>
/* XXX non-standard */
void
puts(s)
char *s;
{
while (*s)
putchar(*s++);
}