shithub: riscv

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