shithub: riscv

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