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