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