git: 9front

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