shithub: riscv

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