ref: a8d4f208d8e94b207c1625fa0008a9f247635dd2 dir: /src/libc/stdio/puts.c/
#include <stdio.h> #undef puts int puts(const char *str) { int ch; while (ch = *str++) putchar(ch); return putchar('\n'); }