shithub: riscv

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