git: 9front

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