shithub: riscv

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