shithub: plan9front

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