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