git: 9front

ref: f0c29f82fca5cb013ba88e3f99b1d3e216357f70
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);
}