git: plan9front

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