]> git.lizzy.rs Git - plan9front.git/blob - sys/src/libstdio/puts.c
pc64: preserve reserved bits in CR0/CR4 for amd64 in mtrr setstate()
[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 }