shithub: riscv

ref: 281c087865941281cbe656b5d7b44c15cfa68dfc
dir: /sys/src/libstdio/putc.c/

View raw version
/*
 * pANS stdio -- putc
 */
#include "iolib.h"
#undef putc
int putc(int c, FILE *f){
	return fputc(c, f);
}