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