shithub: riscv

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