gbdk-releases/gbdk-lib/libc/puts.c

9 lines
109 B
C
Raw Permalink Normal View History

2015-01-10 16:25:06 +01:00
#include <stdio.h>
2015-01-10 16:25:08 +01:00
void puts(const char *s) NONBANKED
2015-01-10 16:25:06 +01:00
{
while (*s)
putchar(*s++);
putchar('\n');
}