shithub: riscv

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