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