]> git.lizzy.rs Git - plan9front.git/blob - sys/src/libstdio/putc.c
pc64: preserve reserved bits in CR0/CR4 for amd64 in mtrr setstate()
[plan9front.git] / sys / src / libstdio / putc.c
1 /*
2  * pANS stdio -- putc
3  */
4 #include "iolib.h"
5 #undef putc
6 int putc(int c, FILE *f){
7         return fputc(c, f);
8 }