git: 9front

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