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