git: 9front

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