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