shithub: riscv

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