shithub: riscv

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