shithub: riscv

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