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