shithub: riscv

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