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