shithub: riscv

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