xref: /plan9-contrib/sys/src/libstdio/putc.c (revision ec59a3ddbfceee0efe34584c2c9981a5e5ff1ec4)
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 }
9