shithub: riscv

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