shithub: riscv

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