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