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