shithub: riscv

ref: 80c855653ed81aedc27a5f3fad8aee545e69d651
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);
}