shithub: riscv

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