shithub: riscv

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