ref: 7735bfe47ab7d15202ea8aeb24f477b70c12914b 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'); }