shithub: riscv

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