shithub: riscv

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