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