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