git: 9front

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