shithub: riscv

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