xref: /plan9-contrib/sys/src/ape/lib/ap/stdio/fputc.c (revision 8ccd4a6360d974db7bd7bbd4f37e7018419ea908)
1 /*
2  * pANS stdio -- fputc
3  */
4 #include "iolib.h"
5 int fputc(int c, FILE *f){
6 	return putc(c, f);	/* This can be made more fair to _IOLBF-mode streams */
7 }
8