mirror of
https://github.com/gbdk-2020/gbdk-2020.git
synced 2026-03-06 07:24:46 +01:00
13 lines
178 B
C
13 lines
178 B
C
#include <stdio.h>
|
|
|
|
extern const char *__crlf;
|
|
|
|
void puts(const char *s) NONBANKED
|
|
{
|
|
while (*s)
|
|
putchar(*s++);
|
|
|
|
for (s = __crlf; (*s); )
|
|
putchar(*s++);
|
|
}
|