shithub: riscv

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