shithub: plan9front

ref: f5c6a870bfb6d92f623aaa42bb60f074638e37fe
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 */
}