git: 9front

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