git: 9front

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