shithub: riscv

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