ref: 56f48a1788a3d7e1e6ee53d58f4849c6b9b3a01c 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'); }