shithub: plan9front

ref: e4ce6aadac9e1de8d5ea625e9680d24cabce0e1a
dir: /sys/src/libstdio/fputc.c/

View raw version
/*
 * pANS stdio -- fputc
 */
#include "iolib.h"
int fputc(int c, FILE *f){
	return putc(c, f);	/* This can be made more fair to _IOLBF-mode streams */
}