shithub: riscv

ref: 390c71f0c79b2b8b94997cd9ae03037272075f8b
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);
}