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