shithub: riscv

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