shithub: front

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