shithub: riscv

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