shithub: riscv

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