shithub: plan9front

ref: 2af6b0896040ab24c2d411a36781d7588935c6cf
dir: /sys/src/libstdio/putc.c/

View raw version
/*
 * pANS stdio -- putc
 */
#include "iolib.h"
#undef putc
int putc(int c, FILE *f){
	return fputc(c, f);
}