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