shithub: riscv

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