shithub: riscv

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