shithub: riscv

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