shithub: front

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