shithub: riscv

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