shithub: riscv

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