shithub: riscv

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