xref: /plan9-contrib/sys/src/ape/lib/ap/stdio/puts.c (revision 96cbc34f1b36a29efdcfd47b10e70703a690febc)
1 /*
2  * pANS stdio -- puts
3  */
4 #include "iolib.h"
5 int puts(const char *s){
6 	fputs(s, stdout);
7 	putchar('\n');
8 	return ferror(stdin)?EOF:0;
9 }
10