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