ref: 12934f8fb43662ca8bc906caaad5f5e8ccbb6bc1 dir: /lib/c/stdio/puts.c/
#include <stdio.h> #undef puts int puts(const char *str) { int ch; while (ch = *str++) putchar(ch); return putchar('\n'); }