shithub: riscv

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