git: 9front

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