shithub: riscv

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