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