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