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