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