ref: c809e59d972aead305d59b23e4d1d156c1ebd2a6 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'); }