xref: /plan9/sys/src/libstdio/fputc.c (revision 58da3067adcdccaaa043d0bfde28ba83b7ced07d)
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