shithub: riscv

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