git: 9front

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