shithub: riscv

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