ref: aedb35af2c5defe2ede15f4e5a7bffe8a3bc32bc dir: /sys/src/ape/lib/ap/stdio/puts.c/
/* * pANS stdio -- puts */ #include "iolib.h" int puts(const char *s){ fputs(s, stdout); putchar('\n'); return ferror(stdin)?EOF:0; }