shithub: riscv

ref: 2ca54f6a26ceda9cfe5012c641154e203ff9a83b
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);
}