shithub: riscv

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