shithub: riscv

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