shithub: riscv

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