shithub: riscv

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