shithub: riscv

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