shithub: riscv

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