shithub: riscv

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