shithub: riscv

ref: 53f5bdfd06cce8093de005b8d706b752d3567cfa
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);
}