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