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