shithub: riscv

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