shithub: riscv

ref: 3fc8d1bdae10955e0b31ee1766d17367e0d0caa1
dir: /sys/src/ape/lib/ap/stdio/putc.c/

View raw version
/*
 * pANS stdio -- putc
 */
#include "iolib.h"
#undef putc
int putc(int c, FILE *f){
	return fputc(c, f);
}