shithub: riscv

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