shithub: riscv

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