shithub: riscv

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