shithub: riscv

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