shithub: riscv

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