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

15 lines
172 B
C

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