shithub: riscv

ref: 8b57e59ea93b7fc4f80c33bc1560b685f392ccc4
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);
}