NetBSD/sys/arch/alpha/stand/bootxx/puts.c
1997-09-06 14:08:27 +00:00

13 lines
111 B
C

#include <lib/libsa/stand.h>
/* XXX non-standard */
void
puts(s)
char *s;
{
while (*s)
putchar(*s++);
}