shithub: riscv

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