shithub: riscv

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