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