shithub: riscv

ref: ceae4e464d33f7965a796f7e6570ec40a5c892c7
dir: /sys/src/libstdio/fputc.c/

View raw version
/*
 * pANS stdio -- fputc
 */
#include "iolib.h"
int fputc(int c, FILE *f){
	return putc(c, f);	/* This can be made more fair to _IOLBF-mode streams */
}