shithub: riscv

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