git: 9front

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