shithub: riscv

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