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