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