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