ref: d5f2d2cc3fc7c2d3701e906df5d2d53781c4ee9c 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; }