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