shithub: riscv

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