git: 9front

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