ref: 48a6d7f71087fc26fe03b357a22db8b93c6b7de6 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'); }