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