shithub: riscv

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