shithub: riscv

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