shithub: plan9front

ref: 4b8f7a2110d80fdad0f09f376dbfd2204e2e8f8e
dir: /sys/src/ape/lib/ap/stdio/putc.c/

View raw version
/*
 * pANS stdio -- putc
 */
#include "iolib.h"
#undef putc
int putc(int c, FILE *f){
	return fputc(c, f);
}