]> git.lizzy.rs Git - plan9front.git/blob - sys/src/libstdio/puts.c
add HISTORY to various man pages
[plan9front.git] / sys / src / libstdio / puts.c
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 }