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