shithub: riscv

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