git: 9front

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