xref: /plan9-contrib/sys/src/ape/lib/ap/stdio/putchar.c (revision 96cbc34f1b36a29efdcfd47b10e70703a690febc)
1 /*
2  * pANS stdio -- getchar
3  */
4 #include "iolib.h"
5 #undef putchar
6 int putchar(int c){
7 	return fputc(c, stdout);
8 }
9