shithub: riscv

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