git: 9front

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