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