shithub: plan9front

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