shithub: riscv

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